import * as z from "zod/v3"; /** * Describes the request body of the /deleteteam API call */ export type DeleteTeamRequest = { /** * The deleted team's id */ id: string; }; /** @internal */ export type DeleteTeamRequest$Outbound = { id: string; }; /** @internal */ export declare const DeleteTeamRequest$outboundSchema: z.ZodType; export declare function deleteTeamRequestToJSON(deleteTeamRequest: DeleteTeamRequest): string; //# sourceMappingURL=deleteteamrequest.d.ts.map