import { TemplateRef } from '@angular/core'; /** * Defines valid templates in Toolbar. * @group Templates */ export interface ToolbarTemplates { /** * Custom start content. */ start(): TemplateRef; /** * Custom end content. */ end(): TemplateRef; /** * Custom center content. */ center(): TemplateRef; }