export type StepStatus = 'upcoming' | 'current' | 'completed'; interface StepProps { step: number; label: string; status: StepStatus; onClick?: () => void; } export declare function Step({ step, label, status, onClick }: StepProps): import("react/jsx-runtime").JSX.Element; export {};