import { type ReactNode } from "react"; import { type ReasoningContents } from "../../model.js"; type ReasoningDropdownProps = { children: ReactNode; isReasoningFinished: boolean; lastReasoningStepTitle: string | undefined; }; export declare function ReasoningDropdown({ children, isReasoningFinished, lastReasoningStepTitle, }: ReasoningDropdownProps): import("react/jsx-runtime").JSX.Element; /** * Gets the title of the last reasoning step across all reasoning items. */ export declare function getLastReasoningStepTitle(reasoningItems: ReasoningContents[]): string | undefined; export {}; //# sourceMappingURL=ReasoningDropdown.d.ts.map