import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type DeleteTeamRequest = { orgId: string; teamId: string; /** * Optional external end-user identifier forwarded by the API gateway. */ xOnBehalfOf?: string | undefined; }; /** * OK */ export type DeleteTeamResponseBody = { id: string; deleted: boolean; }; /** @internal */ export declare const DeleteTeamRequest$inboundSchema: z.ZodType; /** @internal */ export type DeleteTeamRequest$Outbound = { orgId: string; teamId: string; "X-On-Behalf-Of"?: string | undefined; }; /** @internal */ export declare const DeleteTeamRequest$outboundSchema: z.ZodType; export declare function deleteTeamRequestToJSON(deleteTeamRequest: DeleteTeamRequest): string; export declare function deleteTeamRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DeleteTeamResponseBody$inboundSchema: z.ZodType; /** @internal */ export type DeleteTeamResponseBody$Outbound = { id: string; deleted: boolean; }; /** @internal */ export declare const DeleteTeamResponseBody$outboundSchema: z.ZodType; export declare function deleteTeamResponseBodyToJSON(deleteTeamResponseBody: DeleteTeamResponseBody): string; export declare function deleteTeamResponseBodyFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=deleteteam.d.ts.map