export declare class DefaultConfigs { static simpleAlertConfig: SimpleAlertConfig; } export interface SimpleAlertConfig { alertType?: any | undefined; cancelButtonText?: any | undefined; confirmButtonText?: any | undefined; customClass?: any | undefined; displayDuration?: any | undefined; icon?: any | undefined; iconColor?: any | undefined; position?: any | undefined; onCancel?: any | undefined; onConfirm?: any | undefined; showCancelButton?: any | undefined; showConfirmButton?: any | undefined; showProgressBar?: any | undefined; toast?: any | undefined; } export declare class SimpleAlertConfigUtil { static from(config: Partial, defaultConfig?: Partial): SimpleAlertConfig; }