import { LiteralUnion } from './literal-union' import { DialogParams } from './dialog.factory' export type AlertType = LiteralUnion<'success' | 'warning' | 'error' | 'info', string> /** Alert Component */ export declare interface AlertParams extends DialogParams {} export interface MmAlertFactory { (options: AlertParams): Promise }