import { type IJAlertConfig } from "@/jv3-alert.d";
export default class JAlert {
    constructor(config: IJAlertConfig);
    dialog(message: string | any, options?: IJAlertConfig, template?: string): Promise<any>;
    alert(message: string | any, options?: IJAlertConfig): Promise<any>;
    error(message: string | any, options?: IJAlertConfig): Promise<any>;
    info(message: string | any, options?: IJAlertConfig): Promise<any>;
    confirm(message: string | any, callback: (result: boolean) => void, options?: IJAlertConfig): Promise<void>;
}
