import { OrganizationTag } from '../Platform.js'; export declare class TagHelper { /** * Get the root tags from the tags array. * A root tag is a tag that is not a child of another tag in the array. * @param tags */ static getRootTags(tags: OrganizationTag[]): OrganizationTag[]; /** * Checks if a tag with the provided id contains the tag with the id to search recursively. * @param tagId id of the tag to search into * @param tagIdToSearch id of the tag to search inside the tag * @param tagMap a map of all the tags * @returns true if the tag contains the tag to search recursively or false otherwise */ static containsDeep(tagId: string, tagIdToSearch: string, tags: { allTags: OrganizationTag[]; } | { tagMap: Map; }): boolean; } //# sourceMappingURL=TagHelper.d.ts.map