UNPKG

@spaced-out/ui-design-system

Version:
16 lines 484 B
import * as React from 'react'; import type { Flow } from 'flow-to-typescript-codemod'; type ClassNames = Readonly<{ wrapper?: string; }>; export interface StepperProps { classNames?: ClassNames; activeStep?: number; children: React.ReactNode; orientation?: 'horizontal' | 'vertical'; disabled?: boolean; testId?: string; } export declare const Stepper: Flow.AbstractComponent<StepperProps, HTMLDivElement>; export {}; //# sourceMappingURL=Stepper.d.ts.map