import React from "react"; import type { LightBoxContextType, LightBoxProviderProps } from "./LightBox.types"; export declare const LightBoxContext: React.Context; export declare function LightBoxProvider({ open, images, imageIndex, onRequestClose, onImageChange, boxSizing, children, }: LightBoxProviderProps): React.JSX.Element; export declare function useLightBoxContext(): LightBoxContextType;