import { BackdropProps } from '../../../Backdrop'; import { FC } from 'react'; export type DialogBackdropProps = BackdropProps; /** * `DialogBackdrop` is a visual subcomponent of `Dialog` that renders * a backdrop behind the dialog content. * * It composes the base `Backdrop` primitive and integrates with * `DialogContext` to adjust its presentation based on dialog state, * such as enabling a fluid (full-bleed) layout when required. * * The backdrop is responsible for visually separating the dialog * from the underlying page content and typically participates in * focus management and modal interaction patterns. * * This component does not manage dialog state itself and must be * used within a `Dialog` context. */ export declare const DialogBackdrop: FC;