import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type V3TokenRequest = { /** * The client ID retrieved from the [Developer Portal](https://developer.prove.com/reference/authentication). */ clientId: string; /** * The client secret retrieved from the [Developer Portal](https://developer.prove.com/reference/authentication). */ clientSecret: string; /** * The grant type. This field only accepts `client_credentials`. */ grantType: string; }; /** @internal */ export declare const V3TokenRequest$inboundSchema: z.ZodType; /** @internal */ export type V3TokenRequest$Outbound = { client_id: string; client_secret: string; grant_type: string; }; /** @internal */ export declare const V3TokenRequest$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace V3TokenRequest$ { /** @deprecated use `V3TokenRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `V3TokenRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `V3TokenRequest$Outbound` instead. */ type Outbound = V3TokenRequest$Outbound; } export declare function v3TokenRequestToJSON(v3TokenRequest: V3TokenRequest): string; export declare function v3TokenRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=v3tokenrequest.d.ts.map