import * as class_variance_authority_types from 'class-variance-authority/types'; import { VariantProps } from 'class-variance-authority'; /** * Box variants. Kept deliberately small for the foundation commit. * Stack, Flex, and Center will land later as either Box variants * or as siblings; not sure which I prefer yet. */ declare const boxConfig: (props?: ({ surface?: "none" | "primary" | "raised" | "sunken" | null | undefined; padding?: "none" | "sm" | "md" | "lg" | null | undefined; radius?: "none" | "sm" | "md" | "lg" | "pill" | null | undefined; } & class_variance_authority_types.ClassProp) | undefined) => string; type BoxVariants = VariantProps; export { type BoxVariants as B, boxConfig as b };