/** @packageDocumentation * @module ContentView */ import "./ContentOverlay.scss"; import * as React from "react"; /** Returns the number of content overlays. * @internal */ export declare const useContentOverlayStore: import("zustand").UseBoundStore>; interface ContentOverlayProps extends React.ComponentProps<"div"> { /** Describes if the content is active. */ active?: boolean; } /** Overlay used to identify active content views. * This component is treated as part of the application content and integrates with the `UiFramework.visibility` system to handle mouse events appropriately. * @beta */ export declare function ContentOverlay({ className, children, active, ...other }: ContentOverlayProps): React.JSX.Element; export {}; //# sourceMappingURL=ContentOverlay.d.ts.map