export declare type AlertType = 'info' | 'warn' | 'error'; export declare class ODialogConfig { alertType?: AlertType; okButtonText?: string; cancelButtonText?: string; icon?: string; }