export declare const Elevation: {
    ZERO: 0;
    ONE: 1;
    TWO: 2;
    THREE: 3;
    FOUR: 4;
};
export type Elevation = (typeof Elevation)[keyof typeof Elevation];
