import { PromptInputBodyConfig, PromptInputFooterConfig } from "./types.js"; import { UsePromptInputReturn } from "./usePromptInput.js"; /** * Props for the PromptInputSimple component */ export type PromptInputSimpleProps = { /** Hook return value with state and handlers */ hookState: UsePromptInputReturn; /** Body/textarea-related props */ bodyProps?: PromptInputBodyConfig; /** Footer-related props */ footerProps?: PromptInputFooterConfig; /** Additional CSS class */ className?: string; /** QA/test identifier */ qa?: string; }; /** * PromptInputSimple component - simple view with just body and footer * * @param props - Component props * @returns React component */ export declare function PromptInputSimple(props: PromptInputSimpleProps): import("react/jsx-runtime").JSX.Element;