/// import { ComponentProps } from '@hitagi/utils/types'; import { FadeProps } from '../Fade'; declare const StyledBox: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, import("styled-system").LayoutProps>> & import("styled-system").FlexboxProps>> & import("styled-system").GridProps>> & import("styled-system").PositionProps>> & import("styled-system").SpaceProps>, string | number | symbol> & import("styled-system").TypographyProps>> & import("../styles/system").BgProps & import("../styles/system").ColorProps & import("../styles/system").VisibilityProps & import("../styles/system").CursorProps & import("../styles/system").BoxSizingProps & { row?: boolean | undefined; col?: boolean | undefined; center?: boolean | undefined; }, never>; type BackdropProps = Omit & ComponentProps; /** * Backdrop creates a darkened background, that has, * kind of fade animated, for smooth appearing/disappearing. */ export default function Backdrop(props: BackdropProps): JSX.Element; export {};