export type AlertOptions = string | { message?: string; [key: string]: any; }; interface AlertImpl { alert(options: AlertOptions): Promise; yesNo(options: AlertOptions): Promise; } export declare function alert(options: AlertOptions): Promise; export declare function yesNo(options: AlertOptions): Promise; export declare function registerAlertImpl(x: AlertImpl): void; export {}; //# sourceMappingURL=alerts.d.ts.map