import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type FreshdeskCredentials = { domain: string; apiKey: string; }; /** @internal */ export declare const FreshdeskCredentials$inboundSchema: z.ZodType; /** @internal */ export type FreshdeskCredentials$Outbound = { domain: string; api_key: string; }; /** @internal */ export declare const FreshdeskCredentials$outboundSchema: z.ZodType; export declare function freshdeskCredentialsToJSON(freshdeskCredentials: FreshdeskCredentials): string; export declare function freshdeskCredentialsFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=freshdeskcredentials.d.ts.map