import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type IntercomCredentials = { accessToken: string; appName: string; /** * The email of the Intercom account this is for */ userEmail: string; }; /** @internal */ export declare const IntercomCredentials$inboundSchema: z.ZodType; /** @internal */ export type IntercomCredentials$Outbound = { access_token: string; app_name: string; user_email: string; }; /** @internal */ export declare const IntercomCredentials$outboundSchema: z.ZodType; export declare function intercomCredentialsToJSON(intercomCredentials: IntercomCredentials): string; export declare function intercomCredentialsFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=intercomcredentials.d.ts.map