import * as z from "zod/v4"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { ConnectorAuthenticationHeader } from "./connectorauthenticationheader.js"; import { ExtendedOAuthServerMetadata } from "./extendedoauthservermetadata.js"; import { GlobalHeaderValue } from "./globalheadervalue.js"; import { OAuth2GrantType } from "./oauth2granttype.js"; import { OutboundAuthenticationType } from "./outboundauthenticationtype.js"; /** * Public view of an authentication method, without secrets. */ export type PublicAuthenticationMethod = { methodType: OutboundAuthenticationType; headers?: Array | null | undefined; globalHeaders?: { [k: string]: GlobalHeaderValue; } | undefined; hasDefaultCredentials: boolean; grantType?: OAuth2GrantType | null | undefined; oauth2ServerMetadata?: ExtendedOAuthServerMetadata | null | undefined; }; /** @internal */ export declare const PublicAuthenticationMethod$inboundSchema: z.ZodType; export declare function publicAuthenticationMethodFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=publicauthenticationmethod.d.ts.map