import { default as React } from 'react'; import { LightboxImageComponentProps, LightboxProps, VideoComponentProps } from './types'; interface LightboxComponentProps extends LightboxProps { LightboxImageComponent: React.ComponentType; VideoComponent: React.ComponentType; } declare function Lightbox({ LightboxImageComponent, VideoComponent, ...props }: LightboxComponentProps): import("react/jsx-runtime").JSX.Element | null; export default Lightbox;