import { type FC } from 'react'; import type { Step } from './types'; type Props = Pick & { stepNumber?: number; current: boolean; }; export declare const StepCounter: FC; export {};