import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type DeleteTagRequest = { /** * The ID of the tag to delete. */ id: string; }; /** * The deleted tag ID. */ export type DeleteTagResponseBody = { /** * The ID of the deleted tag. */ id: string; }; /** @internal */ export type DeleteTagRequest$Outbound = { id: string; }; /** @internal */ export declare const DeleteTagRequest$outboundSchema: z.ZodType; export declare function deleteTagRequestToJSON(deleteTagRequest: DeleteTagRequest): string; /** @internal */ export declare const DeleteTagResponseBody$inboundSchema: z.ZodType; export declare function deleteTagResponseBodyFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=deletetag.d.ts.map