import { FC } from 'react';
export interface ViewportControlsProps {
    onZoomIn: () => void;
    onZoomOut: () => void;
    onFitView: () => void;
    orientation?: 'horizontal' | 'vertical';
    size?: 'sm' | 'md' | 'lg';
    showLabels?: boolean;
}
/**
 * ViewportControls component for zoom and view operations
 * Provides reusable viewport control buttons
 */
export declare const ViewportControls: FC<ViewportControlsProps>;
//# sourceMappingURL=ViewportControls.d.ts.map