import React from 'react';
import type { StepItem } from './step';
export type StepsProps = {
    current?: number;
    items: Array<StepItem>;
    onChange?: (currentStep: number) => void;
    id?: string;
    className?: string;
    noReturnMessage?: string;
};
export declare const Steps: React.FC<StepsProps>;
//# sourceMappingURL=steps.d.ts.map