import * as React from 'react'; import { BaseUIComponentProps } from "../../internals/types.mjs"; /** * An element placed before `` to render a background layer that can be styled based on whether any drawer is open. * Renders a `
` element. * * Documentation: [Base UI Drawer](https://base-ui.com/react/components/drawer) */ export declare const DrawerIndentBackground: React.ForwardRefExoticComponent & React.RefAttributes>; export interface DrawerIndentBackgroundState { /** * Whether any drawer within the nearest is open. */ active: boolean; } export interface DrawerIndentBackgroundProps extends BaseUIComponentProps<'div', DrawerIndentBackgroundState> {} export declare namespace DrawerIndentBackground { type State = DrawerIndentBackgroundState; type Props = DrawerIndentBackgroundProps; }