import { checkbox, confirm, number, input, editor, search, password, expand, select, rawlist, Separator } from '@inquirer/prompts'; interface InputOptions { interaction?: boolean; } declare class Input { options: InputOptions; checkbox: typeof checkbox; confirm: typeof confirm; number: typeof number; input: typeof input; editor: typeof editor; search: typeof search; password: typeof password; expand: typeof expand; select: typeof select; rawlist: typeof rawlist; Separator: typeof Separator; separator(separator?: string): Separator; constructor(options?: InputOptions); } export { Input, type InputOptions };