import type { TerminalRegion } from '../region.js'; import type { Color } from '../types.js'; export interface PromptOptions { message?: string; key?: 'spacebar' | 'enter' | 'q' | 'any'; color?: Color; } /** * Wait for user to press a key before continuing * * Shows a prompt message and waits for the specified key press. * Uses a Prompt component so it re-renders correctly on resize. */ export declare function prompt(region: TerminalRegion, options?: PromptOptions): Promise; //# sourceMappingURL=prompt.d.ts.map