import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; /** * The type of grant being requested. * * @remarks * * - `client_credentials`: A grant type used by clients to obtain an access token * - `refresh_token`: A grant type used by clients to obtain a new access token using a refresh token */ export declare const GrantType: { readonly ClientCredentials: "client_credentials"; readonly RefreshToken: "refresh_token"; }; /** * The type of grant being requested. * * @remarks * * - `client_credentials`: A grant type used by clients to obtain an access token * - `refresh_token`: A grant type used by clients to obtain a new access token using a refresh token */ export type GrantType = ClosedEnum; /** @internal */ export declare const GrantType$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const GrantType$outboundSchema: z.ZodNativeEnum; //# sourceMappingURL=granttype.d.ts.map