import { TemplateRef } from '@angular/core'; /** * Defines valid templates in Image. * @group Templates */ export interface ImageTemplates { /** * Custom template of indicator. */ indicator(): TemplateRef; /** * Custom template of rotaterighticon. */ rotaterighticon(): TemplateRef; /** * Custom template of rotatelefticon. */ rotatelefticon(): TemplateRef; /** * Custom template of zoomouticon. */ zoomouticon(): TemplateRef; /** * Custom template of zoominicon. */ zoominicon(): TemplateRef; /** * Custom template of closeicon. */ closeicon(): TemplateRef; }