import { DisplayOptions, EasyCLITheme } from '../themes';
/**
 * Options for the promptConfirm function
 *
 * @interface PromptConfirmOptions
 * @type {object}
 *
 * @property {boolean} [defaultOption=false] The default option to use
 * @property {EasyCLITheme} [theme=null] The theme to use
 * @property {DisplayOptions} [promptTheme='default'] The theme to use for the prompt
 *
 * @example
 * ```typescript
 * {
 * defaultOption: true,
 * theme: new EasyCLITheme(),
 * promptTheme: 'info',
 * }
 * ```
 */
export type PromptConfirmOptions = {
    defaultOption?: boolean;
    theme?: null | EasyCLITheme;
    promptTheme?: DisplayOptions;
};
/**
 * Prompts the user to confirm a prompt.
 *
 * @param {string} prompt The prompt to display to the user
 * @param {PromptConfirmOptions} options The options for the prompt
 *
 * @returns {Promise<boolean>} The choice the user selected
 *
 * @example
 * ```typescript
 * // Prompt the user to confirm a prompt
 * const choice = await promptConfirm('Are you sure?');
 * console.log(choice);
 *
 * // Prompt the user to confirm a prompt with a default option
 * const choice = await promptConfirm('Are you sure?', { defaultOption: true });
 * console.log(choice);
 *
 * // Prompt the user to confirm a prompt using a custom theme
 * const choice = await promptConfirm('Are you sure?', {
 *  theme: new EasyCLITheme(),
 *  promptTheme: 'info',
 * });
 * ```
 */
export declare const promptConfirm: (prompt: string, { defaultOption, theme, promptTheme, }?: PromptConfirmOptions) => Promise<any>;
