import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type ListTeamsRequest = { orgId: string; /** * Optional external end-user identifier forwarded by the API gateway. */ xOnBehalfOf?: string | undefined; }; export type Teams = { id: string; name: string; organizationId: string; createdAt: string; updatedAt: string; }; /** * OK */ export type ListTeamsResponseBody = { teams: Array; }; /** @internal */ export declare const ListTeamsRequest$inboundSchema: z.ZodType; /** @internal */ export type ListTeamsRequest$Outbound = { orgId: string; "X-On-Behalf-Of"?: string | undefined; }; /** @internal */ export declare const ListTeamsRequest$outboundSchema: z.ZodType; export declare function listTeamsRequestToJSON(listTeamsRequest: ListTeamsRequest): string; export declare function listTeamsRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Teams$inboundSchema: z.ZodType; /** @internal */ export type Teams$Outbound = { id: string; name: string; organizationId: string; createdAt: string; updatedAt: string; }; /** @internal */ export declare const Teams$outboundSchema: z.ZodType; export declare function teamsToJSON(teams: Teams): string; export declare function teamsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const ListTeamsResponseBody$inboundSchema: z.ZodType; /** @internal */ export type ListTeamsResponseBody$Outbound = { teams: Array; }; /** @internal */ export declare const ListTeamsResponseBody$outboundSchema: z.ZodType; export declare function listTeamsResponseBodyToJSON(listTeamsResponseBody: ListTeamsResponseBody): string; export declare function listTeamsResponseBodyFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=listteams.d.ts.map