import { TemplateRef } from '@angular/core'; /** * Defines valid templates in Sidebar. * @group Templates */ export interface SidebarTemplates { /** * Custom template of header. */ header(): TemplateRef; /** * Custom template of content. */ content(): TemplateRef; /** * Custom template of footer. */ footer(): TemplateRef; /** * Custom template of closeicon. */ closeicon(): TemplateRef; /** * Headless template. */ headless(): TemplateRef; }