import { type VariantProps } from "class-variance-authority"; /** ActionCenter root — a vertical list of suggested next actions. */ export declare const actionCenterVariants: (props?: import("class-variance-authority/types").ClassProp | undefined) => string; /** * Icon chip tone — a soft urgency tint. `primary` uses the `selected` emphasis * tokens, never `accent`. Tone is a hint, never the only signal (the action's * label always says what to do). */ export declare const actionCenterIconVariants: (props?: ({ tone?: "default" | "primary" | "destructive" | "warning" | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; /** * An action row. Becomes an interactive surface (hover `muted`, shared focus * ring, press feedback) when actionable; otherwise a static, quiet row. The * styling source of truth for both react-ui ActionCenter and any router-aware * wrapper (react-components RouteActionCenter) — compose this, don't re-roll it. */ export declare const actionCenterItemVariants: (props?: ({ interactive?: boolean | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; export type ActionCenterTone = NonNullable["tone"]>; //# sourceMappingURL=variants.d.ts.map