import { type VariantProps } from "class-variance-authority"; /** * ActivityFeed tone — colors an entry's marker chip. A human-readable feed of * things that happened (distinct from a compliance audit log). Tones use theme * tokens; `primary` uses the `selected` emphasis, never `accent`. */ export declare const activityFeedMarkerVariants: (props?: ({ tone?: "default" | "primary" | "destructive" | "warning" | "success" | null | undefined; density?: "compact" | "comfortable" | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; /** Solid inner dot for entries with no icon, tinted to match the marker tone. */ export declare const activityFeedDotVariants: (props?: ({ tone?: "default" | "primary" | "destructive" | "warning" | "success" | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; /** ActivityFeed root — a vertical `
    `. */ export declare const activityFeedVariants: (props?: import("class-variance-authority/types").ClassProp | undefined) => string; /** * A feed entry `
  1. ` — its `::before` draws the connecting rail below the * marker; the last entry hides it. Offsets center the line under the marker at * each density. `showConnectors={false}` hides the rail entirely. */ export declare const activityFeedItemVariants: (props?: ({ density?: "compact" | "comfortable" | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; export type ActivityFeedTone = NonNullable["tone"]>; export type ActivityFeedDensity = NonNullable["density"]>; //# sourceMappingURL=variants.d.ts.map