import type { OverlayOptions, TUI } from '@mariozechner/pi-tui'; export type ModalQuestionOption = { label: string; description?: string; }; export type ModalQuestionOptions = { question: string; options?: ModalQuestionOption[]; defaultValue?: string; allowEmptyInput?: boolean; allowCustomResponse?: boolean; selectedOptionLabel?: string; multiline?: boolean; overlay?: { widthPercent?: number; maxHeight?: OverlayOptions['maxHeight']; }; }; export declare function askModalQuestion(tui: TUI, options: ModalQuestionOptions): Promise; //# sourceMappingURL=modal-question.d.ts.map