import { ReactNode } from 'react'; import { PromptInputSuggestionsConfig } from "./types.js"; /** * Props for the PromptInputWithSuggestions component */ export type PromptInputWithSuggestionsProps = { /** Child component (PromptInput) */ children: ReactNode; /** Suggestions-related props */ suggestionsProps?: PromptInputSuggestionsConfig; /** Additional CSS class */ className?: string; /** QA/test identifier */ qa?: string; }; /** * PromptInputWithSuggestions component - wrapper that shows suggestions above the prompt input * * @param props - Component props * @returns React component */ export declare function PromptInputWithSuggestions(props: PromptInputWithSuggestionsProps): import("react/jsx-runtime").JSX.Element;