import React from 'react'; interface Props { className?: string; /** * Step components */ children?: React.ReactNode; /** * Whether this should be interactive or just static. */ interactive?: boolean; /** * Index of the active step. Use when you want to handle the state on your own. Start at 0. */ selectedIndex?: number; /** * Handler func triggered when user clicks the icon. Use when you want to handle the state on your own. */ onSelect?: (index: number) => void; size?: 'xs' | 'sm' | 'md' | 'lg'; borders?: 'solid' | 'dashed'; } export declare const StepByStep: React.FC; export {};