import * as z from "zod"; import { ClosedEnum } from "../../types/enums.js"; /** * OAuth grant type used by the connector. More info: https://oauth.net/2/grant-types */ export declare const OAuthGrantType: { readonly AuthorizationCode: "authorization_code"; readonly ClientCredentials: "client_credentials"; readonly Password: "password"; }; /** * OAuth grant type used by the connector. More info: https://oauth.net/2/grant-types */ export type OAuthGrantType = ClosedEnum; /** @internal */ export declare const OAuthGrantType$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const OAuthGrantType$outboundSchema: z.ZodNativeEnum; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace OAuthGrantType$ { /** @deprecated use `OAuthGrantType$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly AuthorizationCode: "authorization_code"; readonly ClientCredentials: "client_credentials"; readonly Password: "password"; }>; /** @deprecated use `OAuthGrantType$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly AuthorizationCode: "authorization_code"; readonly ClientCredentials: "client_credentials"; readonly Password: "password"; }>; } //# sourceMappingURL=oauthgranttype.d.ts.map