import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type ListServiceAccountsRequest = { orgId: string; /** * Optional external end-user identifier forwarded by the API gateway. */ xOnBehalfOf?: string | undefined; }; export type ServiceAccounts = { id: string; orgId: string; name: string; createdAt: string; }; /** * OK */ export type ListServiceAccountsResponseBody = { serviceAccounts: Array; }; /** @internal */ export declare const ListServiceAccountsRequest$inboundSchema: z.ZodType; /** @internal */ export type ListServiceAccountsRequest$Outbound = { orgId: string; "X-On-Behalf-Of"?: string | undefined; }; /** @internal */ export declare const ListServiceAccountsRequest$outboundSchema: z.ZodType; export declare function listServiceAccountsRequestToJSON(listServiceAccountsRequest: ListServiceAccountsRequest): string; export declare function listServiceAccountsRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const ServiceAccounts$inboundSchema: z.ZodType; /** @internal */ export type ServiceAccounts$Outbound = { id: string; orgId: string; name: string; createdAt: string; }; /** @internal */ export declare const ServiceAccounts$outboundSchema: z.ZodType; export declare function serviceAccountsToJSON(serviceAccounts: ServiceAccounts): string; export declare function serviceAccountsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const ListServiceAccountsResponseBody$inboundSchema: z.ZodType; /** @internal */ export type ListServiceAccountsResponseBody$Outbound = { serviceAccounts: Array; }; /** @internal */ export declare const ListServiceAccountsResponseBody$outboundSchema: z.ZodType; export declare function listServiceAccountsResponseBodyToJSON(listServiceAccountsResponseBody: ListServiceAccountsResponseBody): string; export declare function listServiceAccountsResponseBodyFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=listserviceaccounts.d.ts.map