/** * Represents the tiers of elevation (box-shadow) tokens that can be applied to Framework Components */ export declare enum DESIGN_ELEVATION { lowest = "lowest", low = "low", medium = "medium", high = "high", highest = "highest" } export declare const DESIGN_ELEVATION_LITERALS: { readonly lowest: DESIGN_ELEVATION.lowest; readonly low: DESIGN_ELEVATION.low; readonly medium: DESIGN_ELEVATION.medium; readonly high: DESIGN_ELEVATION.high; readonly highest: DESIGN_ELEVATION.highest; }; export declare type DESIGN_ELEVATION_ARGUMENT = keyof typeof DESIGN_ELEVATION_LITERALS;