import { type VariantProps } from "class-variance-authority"; /** ReadinessSummary root — a vertical stack: header, then grouped issues. */ export declare const readinessSummaryVariants: (props?: import("class-variance-authority/types").ClassProp | undefined) => string; /** * Issue severity — drives the marker icon color. Never the only signal: each * issue also has a default shape icon and a text label, and the header states * the count in words. */ export declare const readinessIssueIconVariants: (props?: ({ severity?: "error" | "warning" | "info" | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; /** * A single issue row. Becomes a full-width button when the issue is actionable, * taking the shared focus ring and a transient `muted` hover surface. */ export declare const readinessIssueVariants: (props?: ({ interactive?: boolean | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; export type ReadinessSeverity = NonNullable["severity"]>; //# sourceMappingURL=variants.d.ts.map