import React from "react"; interface IProps extends Omit, HTMLDivElement>, "ref" | "onClick"> { isCurrentStep?: boolean; currentStepValue: number; onClick: (value: number) => void; } export declare const StepEllipse: ({ isCurrentStep, onClick, currentStepValue, ...props }: IProps) => JSX.Element; export {};