import type { KnowledgeStore } from '../store.js'; import type { HomeGraphExport } from './types.js'; export declare function exportHomeGraphSpace(store: KnowledgeStore, input: { readonly spaceId: string; readonly installationId: string; }): HomeGraphExport; export declare function importHomeGraphSpace(store: KnowledgeStore, input: { readonly spaceId: string; readonly installationId: string; readonly data: HomeGraphExport; }): Promise<{ readonly ok: true; readonly spaceId: string; readonly imported: { readonly sources: number; readonly nodes: number; readonly edges: number; readonly issues: number; readonly extractions: number; }; }>; //# sourceMappingURL=import-export.d.ts.map