declare const confirm: (message: string, params?: { color?: string; target?: HTMLElement; }) => Promise; declare const alert: (message: string, params?: { type?: string; target?: HTMLElement; }) => Promise; declare const toast: (message: string, params?: { type?: string; target?: HTMLElement; }) => Promise; declare const index_alert: typeof alert; declare const index_confirm: typeof confirm; declare const index_toast: typeof toast; declare namespace index { export { index_alert as alert, index_confirm as confirm, index_toast as toast }; } export { alert as a, confirm as c, index as i, toast as t };