import * as z from "zod/v4"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { ConsumerType } from "./consumertype.js"; import { OutboundAuthenticationType } from "./outboundauthenticationtype.js"; export type AuthenticationConfiguration = { name: string; authenticationType: OutboundAuthenticationType; scope: ConsumerType; isDefault: boolean; }; /** @internal */ export declare const AuthenticationConfiguration$inboundSchema: z.ZodType; export declare function authenticationConfigurationFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=authenticationconfiguration.d.ts.map