import type { KnowledgeSemanticService } from '../semantic/index.js'; import type { KnowledgeStore } from '../store.js'; import type { HomeGraphAskInput, HomeGraphAskResult, HomeGraphSearchResult } from './types.js'; import type { HomeGraphSearchState } from './search.js'; export declare function answerHomeGraphQuery(input: { readonly store: KnowledgeStore; readonly semanticService?: KnowledgeSemanticService | undefined; readonly spaceId: string; readonly query: HomeGraphAskInput; readonly state: HomeGraphSearchState; readonly results: readonly HomeGraphSearchResult[]; }): Promise; //# sourceMappingURL=ask.d.ts.map