import { type FileOptions } from '@inquirer/external-editor'; import { type Theme } from '@inquirer/core'; import type { PartialDeep } from '@inquirer/type'; type EditorTheme = { validationFailureMode: 'keep' | 'clear'; style: { loadingMessage: () => string; waitingMessage: (enterKey: string) => string; }; }; type EditorConfig = { message: string; default?: string; postfix?: string; waitForUserInput?: boolean; validate?: (value: string) => boolean | string | Promise; file?: FileOptions; theme?: PartialDeep>; }; declare const _default: import("@inquirer/type").Prompt; export default _default;