import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type S3CompatibleCredentials = { accessKeyId: string; secretAccessKey: string; region: string; endpoint?: string | null | undefined; }; /** @internal */ export declare const S3CompatibleCredentials$inboundSchema: z.ZodType; /** @internal */ export type S3CompatibleCredentials$Outbound = { access_key_id: string; secret_access_key: string; region: string; endpoint?: string | null | undefined; }; /** @internal */ export declare const S3CompatibleCredentials$outboundSchema: z.ZodType; export declare function s3CompatibleCredentialsToJSON(s3CompatibleCredentials: S3CompatibleCredentials): string; export declare function s3CompatibleCredentialsFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=s3compatiblecredentials.d.ts.map