import { PanPlugin } from '../../lib/index.ts'; export declare const usePanPlugin: () => { plugin: PanPlugin | null; isLoading: boolean; ready: Promise; }; export declare const usePanCapability: () => { provides: Readonly | null; isLoading: boolean; ready: Promise; }; /** * Hook for pan state for a specific document * @param documentId Document ID */ export declare const usePan: (documentId: string) => { provides: import('../../lib/index.ts').PanScope | null; isPanning: boolean; };