/** * #### Z Indexes * Used to position elements in the z-axis. * If a variable does not suit your purpose, set a value relatively, such as `zindexModal +1`. * * @category number * @cssProperties z-index */ declare const zIndexes: { zindexLayer: number; zindexFixedNavbar: number; zindexModalBackdrop: number; zindexModal: number; zindexPopover: number; zindexToastMessages: number; }; /** * #### Shadows * * @category shadow * @cssProperties box-shadow * @figmaVariableScopes EFFECT_COLOR */ declare const elevationShadows: { embossShadow: string; overlayShadow: string; dragShadow: string; modalShadow: string; focusShadow: string; focusShadowInset: string; }; declare const elevation: { embossShadow: string; overlayShadow: string; dragShadow: string; modalShadow: string; focusShadow: string; focusShadowInset: string; zindexLayer: number; zindexFixedNavbar: number; zindexModalBackdrop: number; zindexModal: number; zindexPopover: number; zindexToastMessages: number; }; type ZIndexes = typeof zIndexes; type ElevationShadows = typeof elevationShadows; type Elevation = typeof elevation; export { ZIndexes, ElevationShadows, Elevation }; export default elevation;