import React from 'react'; interface InlinePromptProps { message: string; options: string[]; onSelect: (value: string) => void; } export declare function InlinePrompt({ message, options, onSelect }: InlinePromptProps): React.ReactElement; export {};