import * as React from "react"; import { TStepperDirection } from "../../hooks/useStepper"; export interface IStepperProps { /** (TStepperDirection) Should the stepper be vertical or horizontal */ direction: TStepperDirection; } export declare const Stepper: React.FunctionComponent; export interface IStepProps { /** (JSX.Element) Custom Spacer Item */ customSpacer?: JSX.Element; /** (boolean) Should there be a spacer */ spacer?: boolean; } export declare const Step: React.FunctionComponent; interface IStepperSpacerProps { direction: TStepperDirection; } export declare const DefaultSpacer: React.FunctionComponent; export {};