import { Separator, type Theme } from '@inquirer/core'; import type { PartialDeep } from '@inquirer/type'; type Choice = { value: Value; name?: string; short?: string; key?: string; }; declare const _default: (config: { message: string; choices: readonly (string | Separator)[] | readonly (Separator | Choice)[]; theme?: PartialDeep | undefined; }, context?: import("@inquirer/type").Context) => Promise & { cancel: () => void; }; export default _default; export { Separator } from '@inquirer/core';