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