import { ReactNode } from 'react'; import "./PromptInputPanel.css"; /** * Props for the PromptInputPanel component */ export type PromptInputPanelProps = { /** Panel content */ children?: ReactNode; /** Additional CSS class */ className?: string; /** QA/test identifier */ qa?: string; }; /** * PromptInputPanel component displays a panel with custom content * * @param props - Component props * @returns React component */ export declare function PromptInputPanel(props: PromptInputPanelProps): import("react/jsx-runtime").JSX.Element;