/**
 * Displays a message that allows capturing end user confirmation
 * @param {string} message The message to be displayed
 * @return boolean
 */
export declare const confirm: (str: string, okButtonText?: string, cancelButtonText?: string) => Promise<boolean>;
