import React from "react"; interface Props { children?: React.ReactElement; onClick?: () => void; className?: string; } declare const Backdrop: ({ children, onClick, className }: Props) => React.JSX.Element; export default Backdrop;