import React from "react"; export type BackdropProps = React.HTMLAttributes & { children?: React.ReactNode[] | React.ReactNode; /** Whether to use inverted colors from the theme */ inverted?: boolean; }; export declare function Backdrop({ children, inverted, ...rest }: BackdropProps): React.ReactElement;