import { SeverityEnum } from '../enums';
import { ButtonModel } from './button.model';
import { TitleStyle } from './title-style.model';
import { ToastMessage } from './toast-message.model';
export interface DialogConfig {
    header?: string | TitleStyle;
    visible?: boolean;
    width?: string;
    height?: string;
    content?: string | TitleStyle;
    closeOnEscape?: boolean;
    confirmButtonConfig?: ButtonModel;
    cancelButtonConfig?: ButtonModel;
    toastOnConfirm?: ToastMessage;
    toastOnCancel?: ToastMessage;
    dialogStyle?: SeverityEnum;
}
//# sourceMappingURL=dialog-config.model.d.ts.map