@spaced-out/ui-design-system
Version:
Sense UI components library
15 lines • 461 B
TypeScript
import * as React from 'react';
import type { Flow } from 'flow-to-typescript-codemod';
type ClassNames = Readonly<{
wrapper?: string;
}>;
export type StepperProps = {
classNames?: ClassNames;
activeStep?: number;
children: React.ReactNode;
orientation?: 'horizontal' | 'vertical';
disabled?: boolean;
};
export declare const Stepper: Flow.AbstractComponent<StepperProps, HTMLDivElement>;
export {};
//# sourceMappingURL=Stepper.d.ts.map