import { StyleOptions } from '../../types'; export interface ZIndexProps { /** * The **`z-index`** CSS property sets the z-order of a positioned element and its descendants or flex items. Overlapping elements with a larger z-index cover those with a smaller one. * * @see https://developer.mozilla.org/docs/Web/CSS/z-index */ style$ZIndex: T; } export declare const zIndex: ({ themeProp, }?: Partial, Theme, Extract>>) => (props: import("../../types").WithTheme, Theme, Breakpoints>) => import("../../types").Styles | undefined;