import { Dispatch, ReactNode, SetStateAction } from 'react'; interface ILightBox { show: boolean; setShow: Dispatch>; } export interface WithOutImage extends ILightBox { uri?: never; body: ReactNode; } export interface WithImage extends ILightBox { uri: string; body?: ReactNode; } export declare const LightBox: ({ show, setShow, uri, body, }: WithOutImage | WithImage) => JSX.Element; export {};