import { ExportPlugin, ExportScope } from '../../lib/index.ts'; export declare const useExportPlugin: () => { plugin: ExportPlugin | null; isLoading: boolean; ready: Promise; }; export declare const useExportCapability: () => { provides: Readonly | null; isLoading: boolean; ready: Promise; }; interface UseExportReturn { provides: ExportScope | null; } /** * Hook for export capability for a specific document * @param getDocumentId Function that returns the document ID */ export declare const useExport: (getDocumentId: () => string | null) => UseExportReturn; export {};