import * as z from "zod/v4-mini"; export type AuthorizationCodeTokenRequest = { grantType: "authorization_code"; clientId: string; clientSecret: string; code: string; redirectUri: string; }; /** @internal */ export type AuthorizationCodeTokenRequest$Outbound = { grant_type: "authorization_code"; client_id: string; client_secret: string; code: string; redirect_uri: string; }; /** @internal */ export declare const AuthorizationCodeTokenRequest$outboundSchema: z.ZodMiniType; export declare function authorizationCodeTokenRequestToJSON(authorizationCodeTokenRequest: AuthorizationCodeTokenRequest): string; //# sourceMappingURL=authorizationcodetokenrequest.d.ts.map