import { TemplateRef } from '@angular/core'; /** * Defines valid templates in Button. * @group Templates */ export interface ButtonTemplates { /** * Custom template of content. */ content(): TemplateRef; /** * Custom template of icon. */ icon(): TemplateRef; /** * Custom template of loadingicon. */ loadingicon(): TemplateRef; }