import { HTMLAttributes } from 'react';
export type BackdropProps = Omit, 'className' | 'style'>;
/** Represents a component to dim the screen, used in combination with a modal dialog. Accepts normal HTML attributes, except className and style. */
export declare const Backdrop: ({ children, ...restProps }: BackdropProps) => import("react").JSX.Element;