import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type BackblazeCredentials = { keyId: string; applicationKey: string; region: string; endpoint: string; }; /** @internal */ export declare const BackblazeCredentials$inboundSchema: z.ZodType; /** @internal */ export type BackblazeCredentials$Outbound = { key_id: string; application_key: string; region: string; endpoint: string; }; /** @internal */ export declare const BackblazeCredentials$outboundSchema: z.ZodType; export declare function backblazeCredentialsToJSON(backblazeCredentials: BackblazeCredentials): string; export declare function backblazeCredentialsFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=backblazecredentials.d.ts.map