import { type HTMLAttributes } from 'react';
interface StepsProps extends HTMLAttributes {
currentStep: number;
}
declare const Step: import("react").ForwardRefExoticComponent>;
declare const StepsComponent: import("react").ForwardRefExoticComponent>;
interface StepProps extends HTMLAttributes {
title: string;
description?: string;
stepNumber?: number;
isActive?: boolean;
isCompleted?: boolean;
isLast?: boolean;
}
export { Step };
export { StepsComponent as Steps };
//# sourceMappingURL=steps.d.ts.map