import { ClientSDK, RequestOptions } from "../lib/sdks.js"; import * as components from "../models/components/index.js"; import * as operations from "../models/operations/index.js"; export declare class Tags extends ClientSDK { /** * Retrieve a list of tags * * @remarks * Retrieve a list of tags for the authenticated workspace. */ list(request?: operations.GetTagsRequest | undefined, options?: RequestOptions): Promise>; /** * Create a tag * * @remarks * Create a tag for the authenticated workspace. */ create(request?: operations.CreateTagRequestBody | undefined, options?: RequestOptions): Promise; /** * Delete a tag * * @remarks * Delete a tag from the workspace. All existing links will still work, but they will no longer be associated with this tag. */ delete(id: string, options?: RequestOptions): Promise; /** * Update a tag * * @remarks * Update a tag in the workspace. */ update(id: string, requestBody?: operations.UpdateTagRequestBody | undefined, options?: RequestOptions): Promise; } //# sourceMappingURL=tags.d.ts.map