import { ExportPlugin } from '../../index.ts'; export declare const useExportPlugin: () => { plugin: ExportPlugin | null; isLoading: boolean; ready: Promise; }; export declare const useExportCapability: () => { provides: Readonly | null; isLoading: boolean; ready: Promise; }; /** * Hook for export capability for a specific document * @param documentId Document ID */ export declare const useExport: (documentId: string) => { provides: import('../../index.ts').ExportScope | null; };