export interface StepElementProps { isPassed: boolean; isDisabled?: boolean; index: number; link?: string; onClick?: (index: number) => void; children?: React.ReactNode; className?: string; } export declare const StepElement: { ({ children, isPassed, isDisabled, onClick, link, index, className }: StepElementProps): import("react/jsx-runtime").JSX.Element; displayName: string; };