import { type Theme } from '@inquirer/core'; import type { PartialDeep } from '@inquirer/type'; type PasswordConfig = { message: string; mask?: boolean | string; validate?: (value: string) => boolean | string | Promise; theme?: PartialDeep; }; declare const _default: import("@inquirer/type").Prompt; export default _default;