import React from "react"; export interface LightBoxProps { source?: string; zoom?: number; rotation?: number; onZoom?: (zoom: number) => void; onRotate?: (rotation: number) => void; } export declare const LightBox: React.FC;