export type StatusType = 'DRAFT' | 'REJECTED' | 'SUBMITTED' | 'ACTIVE';
export interface VarIndicatorProps {
    label: Record<StatusType, string>;
    variant?: StatusType;
    maxSteps?: number;
    currentStep?: number;
    onClick?: () => void;
}
export declare const VarIndicator: ({ label, variant, maxSteps, currentStep, onClick }: VarIndicatorProps) => import("react/jsx-runtime").JSX.Element;
