import type { SharedStepperProps } from '@contractspec/lib.ui-kit-core/interfaces'; import { type VariantProps } from 'class-variance-authority'; declare const dotVariants: (props?: ({ state?: "active" | "inactive" | null | undefined; size?: "sm" | "md" | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; export interface StepperProps extends SharedStepperProps, VariantProps { } export declare function Stepper({ current, total, size, className }: StepperProps): import("react/jsx-runtime").JSX.Element; export {};