import React from "react";
import { LightboxProps, IOrigin, ISpringConfig } from "./Lightbox";
import { IGestureProps } from "./hooks";
declare type OmitedLightboxProps = Omit<LightboxProps, "style" | "disabled" | "underlayColor" | "activeProps" | "renderContent" | "renderItem">;
export interface LightboxOverlayProps extends OmitedLightboxProps, IGestureProps {
    isOpen?: boolean;
    origin?: IOrigin;
    springConfig?: ISpringConfig;
}
declare const LightboxOverlay: React.FC<LightboxOverlayProps>;
export default LightboxOverlay;
