@spaced-out/ui-design-system
Version:
Sense UI components library
16 lines • 484 B
TypeScript
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