import { type ReactNode } from 'react'; import type { CommonProps } from '../types.js'; export interface UNSTABLE_StepperProps extends CommonProps { /** The steps to display in the stepper. */ children: ReactNode; /** The index of the active step. */ currentStep?: number; /** The callback to call when the current step changes. */ onChange?: (step: number) => void; /** The orientation of the stepper. * * @default 'horizontal' */ orientation?: 'vertical' | 'horizontal'; } /** * Displays a series of steps in a process. */ declare const _UNSTABLE_Stepper: (props: UNSTABLE_StepperProps & import("react").RefAttributes & import("../../with-style-props.js").StyleProps) => import("react").JSX.Element | null; export { _UNSTABLE_Stepper as UNSTABLE_Stepper }; //# sourceMappingURL=stepper.d.ts.map