import { type RefObject, type PropsWithChildren, type ReactElement } from 'react'; /** Define the props interface for Step component */ export type StepProps = { readonly title: string; readonly stepKey: string; readonly description?: string; readonly disabled?: boolean; readonly position?: number; readonly done?: boolean; readonly stepPaneRef?: RefObject; readonly stepCount?: number; }; export declare const Step: { ({ title, description, disabled, position, done, stepPaneRef, stepKey, }: PropsWithChildren): ReactElement; displayName: string; }; export default Step; //# sourceMappingURL=Step.d.ts.map