/** @jsx jsx */ import { ReactNode } from 'react'; import { Kind } from '../types'; export interface IStepperProps { steps: { title?: ReactNode; icon: ReactNode; subtitle?: ReactNode; }[]; currentStep: number; kind?: Kind; } export declare function Stepper(props: IStepperProps): JSX.Element;