import { VariantProps } from "class-variance-authority"; import * as class_variance_authority_types21 from "class-variance-authority/types"; //#region src/theme/variants.d.ts type SizeVariant = 'sm' | 'md' | 'lg'; type DensityVariant = 'compact' | 'comfortable'; type ToneVariant = 'neutral' | 'info' | 'success' | 'warning' | 'danger'; type EmphasisVariant = 'default' | 'subtle' | 'strong'; /** * Base CVA example to compose in DS components. * Consumers can extend this with component-specific classes. */ declare const dsBaseVariants: (props?: ({ size?: "sm" | "md" | "lg" | null | undefined; density?: "compact" | "comfortable" | null | undefined; tone?: "neutral" | "danger" | "info" | "success" | "warning" | null | undefined; emphasis?: "default" | "strong" | "subtle" | null | undefined; } & class_variance_authority_types21.ClassProp) | undefined) => string; type DSBaseVariantsProps = VariantProps; //#endregion export { DSBaseVariantsProps, DensityVariant, EmphasisVariant, SizeVariant, ToneVariant, dsBaseVariants }; //# sourceMappingURL=variants.d.ts.map