export declare class AlertComponent { close(): void; show(title: string, ConfirmTextButton?: string, text?: string, type?: any, buttonCancel?: boolean, CancelTextButton?: string): Promise; showHtml(title: string, ConfirmTextButton?: string, text?: string, type?: any, buttonCancel?: boolean, CancelTextButton?: string): Promise; } export declare enum AlertEnumType { success = 0, warning = 1, error = 2, info = 3, question = 4, }