import type { Color } from '../types.js'; import type { Component } from '../component.js'; export interface PromptOptions { message: string; key?: string; color?: Color; } /** * Create a Prompt component that can be added to a region * The component renders a blank line followed by the prompt message */ export declare function Prompt(options: PromptOptions): Component; //# sourceMappingURL=prompt.d.ts.map