import { TermStore } from '@microsoft/microsoft-graph-types'; import { BaseComponentContext } from '@microsoft/sp-component-base'; interface IGraphTaxonomyAPI { getTermSetChildren: (siteId: string, termSetId: string, refreshCache: boolean) => Promise; getTermChildren: (siteId: string, termSetId: string, termId: string, refreshCache: boolean) => Promise; getTermSets: (siteId: string, query?: string, refreshCache?: boolean) => Promise; getTermSet: (siteId: string, termSetId: string, refreshCache?: boolean) => Promise; } export declare const useGraphTaxonomyAPI: (context: BaseComponentContext) => IGraphTaxonomyAPI; export {}; //# sourceMappingURL=useGraphTaxonomyAPI.d.ts.map