/** @See https://www.figma.com/file/zPA2BySKG8bW0LTD5LFYNo/Material-3-Design-Kit-(Community) */
export declare const MD3Elevations: {
    readonly 0: "none";
    readonly 1: "var(--md-sys-elevation-1)";
    readonly 2: "var(--md-sys-elevation-2)";
    readonly 3: "var(--md-sys-elevation-3)";
    readonly 4: "var(--md-sys-elevation-4)";
    readonly 5: "var(--md-sys-elevation-5)";
};
export declare const Elevations: {
    Light: {
        '--md-sys-elevation-1': string;
        '--md-sys-elevation-2': string;
        '--md-sys-elevation-3': string;
        '--md-sys-elevation-4': string;
        '--md-sys-elevation-5': string;
    };
    Dark: {
        '--md-sys-elevation-1': string;
        '--md-sys-elevation-2': string;
        '--md-sys-elevation-3': string;
        '--md-sys-elevation-4': string;
        '--md-sys-elevation-5': string;
    };
};
type MD3Elevation = keyof typeof MD3Elevations;
export declare const MD3Elevation: (elevation?: MD3Elevation) => "none" | "var(--md-sys-elevation-1)" | "var(--md-sys-elevation-2)" | "var(--md-sys-elevation-3)" | "var(--md-sys-elevation-4)" | "var(--md-sys-elevation-5)";
export {};
