import { type ReactNode } from 'react'; import type { CommonProps, StringLikeChildren } from '../types.js'; import type { StepperStatus } from './types.js'; export interface UNSTABLE_StepperItemProps extends CommonProps { /** The title of the step. */ children: StringLikeChildren; /** The description of the step. Optionally, you can pass a React node to render rich text. */ description?: ReactNode; /** The status of the step. */ status?: StepperStatus; } /** * Represents a single step in a stepper component. */ export declare function UNSTABLE_StepperItem({ children, description, status: overrideStatus, UNSAFE_className, UNSAFE_style, ...props }: UNSTABLE_StepperItemProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=stepper-item.d.ts.map