import { SxType } from "@re-flex/styles"; import React from "react"; declare type BackdropProps = React.HTMLAttributes & { sx?: SxType; open: boolean; }; declare const Backdrop: React.FC; export default Backdrop;