import { HTMLAttributes, ReactNode } from "react"; interface Props { /** * The current state of the drawer * @default false */ state: [boolean, (open: boolean) => void]; /** * The drawer to render */ drawer: ReactNode; /** * The amount to darken the backdrop when the drawer is open */ darken?: number; /** * The amount to blur the backdrop when the drawer is open */ blur?: number; } export declare function DrawerScrim({ drawer, children, className, state: [open, setOpen], darken, blur, ...props }: Props & HTMLAttributes): import("react/jsx-runtime").JSX.Element; export {};