import * as React from "react"; export interface BackdropProps extends React.ComponentPropsWithoutRef<"div"> { /** * The content for the Backdrop */ children?: React.ReactNode; /** * If the Backdrop shows the background * * @default true */ showBackground?: boolean; } /** * @public * * @description * * The Backdrop component will add a dimmed layer over the page * and is used to empahisize a particular element. */ export declare const Backdrop: React.FC;