import * as React from 'react'; import { CSSObject } from '@emotion/react'; export type OverlayWrapperProps = React.HTMLProps; export declare const overlayWrapperStyle: (props: OverlayWrapperProps) => CSSObject; export declare const OverlayWrapper: (props: OverlayWrapperProps) => import("@emotion/react/jsx-runtime").JSX.Element; export declare const OverlayContent: (props: React.HTMLProps) => import("@emotion/react/jsx-runtime").JSX.Element; export type OverlayBackgroundProps = React.HTMLProps; export declare const overlayBackgroundStyle: (props: OverlayBackgroundProps) => CSSObject; export declare const OverlayBackground: (props: OverlayBackgroundProps) => import("@emotion/react/jsx-runtime").JSX.Element; export interface OverlayProps extends React.HTMLProps { onBackgroundClick?: () => void; } export declare const Overlay: ({ onBackgroundClick, children, ...props }: OverlayProps) => import("@emotion/react/jsx-runtime").JSX.Element; //# sourceMappingURL=Overlay.d.ts.map