export interface IModalAction { type: 'primary' | 'secondary' | 'info' | 'warning' | 'danger' | 'light' | 'dark' | 'success'; title: string; } export declare type ModalSize = 'sm' | 'lg' | 'xl' | 'fullscreen' | '';