import React from 'react'; export interface StepsProps { currentStep: number; steppers: string[]; cy?: { wrapper?: string; container?: string; title?: string; step?: string; }; } declare const Steps: React.FC; export default Steps;