import * as z from "zod/v4"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { AuthenticationConfiguration } from "./authenticationconfiguration.js"; import { AuthenticationType } from "./authenticationtype.js"; export type CredentialsResponse = { credentials: Array; connectorPresetCredentialsForAuth?: Array | undefined; }; /** @internal */ export declare const CredentialsResponse$inboundSchema: z.ZodType; export declare function credentialsResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=credentialsresponse.d.ts.map