import { ReactNode, Ref, HTMLAttributes } from 'react'; export interface BackdropProps extends HTMLAttributes { /** Extra classes for the backdrop root. */ className?: string; /** Optional content rendered above the backdrop tint (rarely needed - backdrops are usually empty). */ children?: ReactNode; /** Forwarded to the underlying `
`. */ ref?: Ref; } /** Shape of `Backdrop` defaults that can be supplied via `CladdProvider`'s `defaults` prop. */ export type BackdropDefaultProps = Partial>; export declare const Backdrop: (props: BackdropProps) => import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=Backdrop.d.ts.map