import { default as React } from 'react'; interface ViewerControlsProps { zoom: number; onZoomIn: () => void; onZoomOut: () => void; onFitWidth: () => void; onResetZoom: () => void; canZoomIn: boolean; canZoomOut: boolean; currentPage: number; totalPages: number; onGoToPage: (index: number) => void; compact?: boolean; sidebarWidth?: number; } export declare const ViewerControls: React.FC; export {};