import type { ValuesOf } from '../../Types/ValuesOf'; /** * `ElevationWeight` - The `ElevationWeight` object is used to describe the different types of elevation weights. * * @public */ export declare const ElevationWeight: { readonly None: "none"; readonly Light: "light"; readonly SemiLight: "semilight"; readonly Regular: "regular"; readonly SemiBold: "semibold"; readonly Bold: "bold"; readonly ExtraBold: "extrabold"; }; /** * @public */ export type ElevationWeight = ValuesOf; //# sourceMappingURL=ElevationWeight.d.ts.map