type Tipo = "info" | "exito" | "error" | "advertencia"; type Posicion = "top-right" | "top-left" | "bottom-right" | "bottom-left"; interface ModalOptions { tipo?: Tipo; botonTexto?: string; onClose?: () => void; } interface ConfirmOptions { tipo?: Tipo; textoAceptar?: string; textoCancelar?: string; onConfirm?: () => void; onCancel?: () => void; } export declare const alert: { info: (msg: string, opts?: Omit) => void; success: (msg: string, opts?: Omit) => void; error: (msg: string, opts?: Omit) => void; warning: (msg: string, opts?: Omit) => void; }; export declare const toast: { info: (msg: string, dur?: number, pos?: Posicion) => void; success: (msg: string, dur?: number, pos?: Posicion) => void; error: (msg: string, dur?: number, pos?: Posicion) => void; warning: (msg: string, dur?: number, pos?: Posicion) => void; }; export declare const confirm: { info: (msg: string, opts?: Omit) => void; success: (msg: string, opts?: Omit) => void; error: (msg: string, opts?: Omit) => void; warning: (msg: string, opts?: Omit) => void; }; declare const _default: { alert: { info: (msg: string, opts?: Omit) => void; success: (msg: string, opts?: Omit) => void; error: (msg: string, opts?: Omit) => void; warning: (msg: string, opts?: Omit) => void; }; toast: { info: (msg: string, dur?: number, pos?: Posicion) => void; success: (msg: string, dur?: number, pos?: Posicion) => void; error: (msg: string, dur?: number, pos?: Posicion) => void; warning: (msg: string, dur?: number, pos?: Posicion) => void; }; confirm: { info: (msg: string, opts?: Omit) => void; success: (msg: string, opts?: Omit) => void; error: (msg: string, opts?: Omit) => void; warning: (msg: string, opts?: Omit) => void; }; }; export default _default;