interface Step { label: string; active?: boolean; } export interface StepsProps { steps: Step[]; } export declare const Steps: React.FC; export {};