import * as React from 'react'; export interface Step { label: React.ReactNode; onClick?: () => void; hoverLabel?: React.ReactNode; } export interface StepperProps { steps: readonly Step[]; activeStep?: number; className?: string; testId?: string; } /** * This component is considered user-unfriendly and inaccessible on its own and will likely be made internal in the future. Please use `FlowNavigation` instead. * @see https://storybook.wise.design/?path=/story/navigation-flownavigation--variants */ declare const Stepper: ({ steps, activeStep, className, testId }: StepperProps) => React.JSX.Element | null; export default Stepper; //# sourceMappingURL=Stepper.d.ts.map