import { TemplateRef } from '@angular/core'; /** * Defines valid templates in SplitButton. * @group Templates */ export interface SplitButtonTemplates { /** * Custom template of content. */ content(): TemplateRef; /** * Custom template of dropdownicon. */ dropdownicon(): TemplateRef; } /** * Defines ButtonProps interface. */ export interface ButtonProps { ariaLabel?: string; } /** * Defines MenuButtonProps interface. */ export interface MenuButtonProps { ariaLabel?: string; ariaHasPopup?: boolean; ariaExpanded?: boolean; ariaControls?: string; }