import * as z from "zod"; import { ClosedEnum } from "../../types/enums.js"; /** * Type of authorization used by the connector */ export declare const AuthType: { readonly Oauth2: "oauth2"; readonly ApiKey: "apiKey"; readonly Basic: "basic"; readonly Custom: "custom"; readonly None: "none"; }; /** * Type of authorization used by the connector */ export type AuthType = ClosedEnum; /** @internal */ export declare const AuthType$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const AuthType$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 AuthType$ { /** @deprecated use `AuthType$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly Oauth2: "oauth2"; readonly ApiKey: "apiKey"; readonly Basic: "basic"; readonly Custom: "custom"; readonly None: "none"; }>; /** @deprecated use `AuthType$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly Oauth2: "oauth2"; readonly ApiKey: "apiKey"; readonly Basic: "basic"; readonly Custom: "custom"; readonly None: "none"; }>; } //# sourceMappingURL=authtype.d.ts.map