import React from 'react'; export interface TyWizardProps extends Omit, 'onChange'> { /** Content area width (accepts px or %) */ width?: string; /** Total container height including step indicators */ height?: string; /** ID of currently active step */ active?: string; /** Comma-separated IDs of completed steps */ completed?: string; /** Step indicator layout */ orientation?: 'horizontal' | 'vertical'; /** Step change event handler */ onStepChange?: (event: CustomEvent) => void; /** Wizard content (TyStep components) */ children?: React.ReactNode; } export interface WizardStepChangeDetail { activeId: string; activeIndex: number; previousId: string | null; previousIndex: number | null; direction: 'forward' | 'backward' | 'none'; } export declare const TyWizard: React.ForwardRefExoticComponent>; //# sourceMappingURL=TyWizard.d.ts.map