import React from 'react'; export interface TyStepProps extends React.HTMLAttributes { /** Required unique identifier for the step */ id: string; /** Main step title displayed in indicator */ label?: string; /** Optional subtitle/description */ description?: string; /** Whether the step is disabled */ disabled?: boolean; /** User-controlled status override */ status?: 'completed' | 'active' | 'pending' | 'error'; /** Step content */ children?: React.ReactNode; } export declare const TyStep: React.ForwardRefExoticComponent>; //# sourceMappingURL=TyStep.d.ts.map