import type { HTMLAttributes } from 'react';
export type SheetBackdropProps = HTMLAttributes<HTMLDivElement> & {
    asChild?: boolean;
};
export declare const Backdrop: import("react").ForwardRefExoticComponent<HTMLAttributes<HTMLDivElement> & {
    asChild?: boolean;
} & import("react").RefAttributes<HTMLDivElement>>;
