import { ZoomDocumentState, ZoomPlugin } from '../../index.ts'; export declare const useZoomCapability: () => { provides: Readonly | null; isLoading: boolean; ready: Promise; }; export declare const useZoomPlugin: () => { plugin: ZoomPlugin | null; isLoading: boolean; ready: Promise; }; /** * Hook for zoom state for a specific document * @param documentId Document ID */ export declare const useZoom: (documentId: string) => { state: ZoomDocumentState; provides: import('../../index.ts').ZoomScope | null; };