import { ComponentProps } from "react"; import { InternalProps, OmitInternalProps, StyledComponentProps } from "../../shared"; declare const DefaultElement = "div"; export interface InnerUnderlayProps extends InternalProps, StyledComponentProps { /** * The z-index of the underlay. */ zIndex?: number; } export declare function InnerUnderlay({ as, forwardedRef, zIndex, ...rest }: InnerUnderlayProps): JSX.Element; export declare namespace InnerUnderlay { var defaultElement: string; } export declare const Underlay: import("react").ForwardRefExoticComponent, "ref"> & import("react").RefAttributes>; export declare type UnderlayProps = ComponentProps; export {};