import { TemplateRef } from '@angular/core'; /** * Defines valid templates in Card. * @group Templates */ export interface CardTemplates { /** * Custom template of header. */ header(): TemplateRef; /** * Custom template of title. */ title(): TemplateRef; /** * Custom template of subtitle. */ subtitle(): TemplateRef; /** * Custom template of content. */ content(): TemplateRef; /** * Custom template of footer. */ footer(): TemplateRef; }