import { type Prompt, type Prettify } from '@inquirer/type'; type ViewFunction = (config: Prettify, done: (value: Value) => void) => string | [string, string | undefined]; export declare function createPrompt(view: ViewFunction): Prompt; export {};