export declare type StepShape = "square" | "circle" | "triangle" | "star" | "shield"; interface Props { shape: StepShape; step: number; } export declare const StepIcon: (props: Props) => JSX.Element; export {};