import { ReactNode } from 'react'; export type ActionProps = { id: string; children: ReactNode; className?: string; isInProgress?: boolean; }; export declare function Action({ id, children, className, isInProgress }: ActionProps): import("react/jsx-runtime").JSX.Element; export type ReasoningProps = { text: string; isThinking: boolean; className?: string; }; export declare function Reasoning({ text, isThinking, className }: ReasoningProps): import("react/jsx-runtime").JSX.Element | null; export declare function Tool({ isInProgress, children, }: { isInProgress: boolean; children?: React.ReactNode; }): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=in-chat-components.d.ts.map