import { type VariantProps } from "class-variance-authority"; /** StepFlow wrapper — the positioning context for the progress rail. */ export declare const stepFlowVariants: (props?: import("class-variance-authority/types").ClassProp | undefined) => string; /** The ordered list of steps; list styling reset, spacing owned per item. */ export declare const stepFlowListVariants: (props?: import("class-variance-authority/types").ClassProp | undefined) => string; /** * Rail track — a hairline behind the number chips, spanning from the first * chip's center to the last chip's center (chips are size-10, so centers sit * 1.25rem from each edge). */ export declare const stepFlowRailVariants: (props?: import("class-variance-authority/types").ClassProp | undefined) => string; /** * Rail fill — same geometry as the track, scaled by scroll progress from the * top. Transform-only so scrubbing stays on the compositor. */ export declare const stepFlowFillVariants: (props?: import("class-variance-authority/types").ClassProp | undefined) => string; /** One step row: chip rail on the left, content to the right. */ export declare const stepFlowItemVariants: (props?: import("class-variance-authority/types").ClassProp | undefined) => string; /** * Number chip. Interaction-state tokens on purpose: `selected` marks the * step the reader is on, the primary fill marks steps already passed. */ export declare const stepFlowChipVariants: (props?: ({ state?: "active" | "done" | "upcoming" | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; /** Step title row — title plus optional trailing aside, wrapping in narrow containers. */ export declare const stepFlowTitleRowVariants: (props?: import("class-variance-authority/types").ClassProp | undefined) => string; /** Step title text. */ export declare const stepFlowTitleVariants: (props?: import("class-variance-authority/types").ClassProp | undefined) => string; /** Step description text. */ export declare const stepFlowDescriptionVariants: (props?: import("class-variance-authority/types").ClassProp | undefined) => string; export type StepFlowChipState = NonNullable["state"]>; //# sourceMappingURL=variants.d.ts.map