export declare class DdaAlert { type: 'primary' | 'secondary'; variation: 'info' | 'warning' | 'error' | 'success'; title_text: string; description: string; button_text: string; custom_class?: string; component_mode?: string; el: HTMLElement; closeAlert(): void; render(): any; }