import { semanticColor } from "./semantic-color"; type SemanticColor = typeof semanticColor; /** * Elevation and color values for box shadows. * * NOTE: We use fixed values for the box shadows instead of using the regular * `sizing` tokens to ensure that the shadows are consistent across different * root font sizes. */ export declare function boxShadow(semanticColor: SemanticColor): { low: string; mid: string; high: string; }; export {};