/** * Tag Resource * * REST endpoint for knowledge base tags. * All operations require kbId query parameter for tenant scoping. * * Routes: * GET /KnowledgeTag/?kbId=.. — list all tags (public) * GET /KnowledgeTag/?kbId=.. — get a single tag by name (public) */ declare const TagResource_base: any; export declare class TagResource extends TagResource_base { static loadAsInstance: boolean; /** * GET /KnowledgeTag/?kbId=.. — list all tags. * GET /KnowledgeTag/?kbId=.. — get a single tag by name. * Default: public. Hook can restrict. */ get(target?: any): Promise; } export {}; //# sourceMappingURL=TagResource.d.ts.map