/** * Define all Checkbox Variants here in one place. * Variants should match the variants in Figma */ export declare const Variant: { readonly variant: "variant"; }; /** * Checkbox Variant -- Describes the "role" of a checkbox */ export declare const CheckboxVariant: { readonly default: "default"; readonly primary: "primary"; }; export type CheckboxVariantType = keyof typeof CheckboxVariant; export declare const variants: { readonly variant: { readonly default: import("styled-components").FlattenSimpleInterpolation; readonly primary: import("styled-components").FlattenInterpolation>; }; };