import type { CSSProperties, ReactNode } from 'react'; type StepProps = { onClick?: (index: number) => void; /** * Automatically attribued by the parent Stepper */ index?: number; /** * Whether the step is disabled */ disabled?: boolean; /** * Title of the step */ title?: ReactNode; /** * For additional information. * Use prop `title` to properly name the step */ children?: ReactNode; className?: string; 'data-testid'?: string; style?: CSSProperties; }; export declare function Step({ index, onClick, disabled, title, children, className, style, 'data-testid': dataTestId, }: StepProps): import("react").JSX.Element; export declare namespace Step { var displayName: string; } export {}; //# sourceMappingURL=Step.d.ts.map