declare const COMPONENT_RADII: readonly ["inherit", "none", "sm", "md", "lg", "xl", "full"]; type ComponentRadius = (typeof COMPONENT_RADII)[number]; declare const COMPONENT_DENSITIES: readonly ["inherit", "compact", "normal", "relaxed", "spacious"]; type ComponentDensity = (typeof COMPONENT_DENSITIES)[number]; declare function radiusBaseValue(radius: ComponentRadius): string | null; declare function densityBaseValue(density: ComponentDensity): string | null; export { COMPONENT_DENSITIES, COMPONENT_RADII, densityBaseValue, radiusBaseValue }; export type { ComponentDensity, ComponentRadius };