import type { ReactNode } from 'react'; import type { ReasoningStepContextValue, ReasoningStepRootProps } from './types'; export declare function useReasoningStepContext(): ReasoningStepContextValue; export declare function ReasoningStepRootProvider({ text, description, status, icon, showIcon, details, children, detailsChildren, duration, spread, disableExpandAnimation, defaultExpanded, expanded: expandedProp, onExpandedChange, eyeIcon, arrowRightIcon, }: ReasoningStepRootProps & { children?: ReactNode; detailsChildren?: ReactNode; }): import("react/jsx-runtime").JSX.Element; export declare namespace ReasoningStepRootProvider { var displayName: string; }