import { MaterialElevations as materialElevationsData } from 'igniteui-theming'; type StringToNumber = S extends `${infer N extends number}` ? N : never; export type ElevationLevel = StringToNumber; export type ElevationPreset = "material" | "indigo"; type ElevationMap = Record; /** * Material Design elevation definitions loaded from JSON. * Based on the Material Design elevation system with 25 levels (0-24). */ export declare const MATERIAL_ELEVATIONS: ElevationMap; /** * Indigo Design System elevation definitions loaded from JSON. * A custom elevation system with unique shadow definitions. */ export declare const INDIGO_ELEVATIONS: ElevationMap; /** * All elevation presets indexed by design system name. */ export declare const ELEVATION_PRESETS: Record; /** * Valid elevation levels. */ export declare const ELEVATION_LEVELS: ElevationLevel[]; export {};