/** * A simple interface for dialog wrappers that can be used to abstract away the browser's built-in dialog methods or custom implementations. * @category Browser */ export interface IDialogWrapper { alert: (message?: string) => Promise; prompt: (message?: string, _default?: string, cancel?: boolean) => Promise; confirm: (message?: string) => Promise; confirmSync: (message?: string) => boolean; } /** * A dialog wrapper that uses the browser's built-in `window.alert`, `window.prompt`, and `window.confirm` methods. * @category Browser */ export declare const windowDialogWrapper: IDialogWrapper; //# sourceMappingURL=DialogWrapper.d.ts.map