import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type HubspotData = { companies: boolean; contacts: boolean; contactNotes: boolean; deals: boolean; dealNotes: boolean; emails: boolean; tasks: boolean; }; /** @internal */ export declare const HubspotData$inboundSchema: z.ZodType; /** @internal */ export type HubspotData$Outbound = { companies: boolean; contacts: boolean; contact_notes: boolean; deals: boolean; deal_notes: boolean; emails: boolean; tasks: boolean; }; /** @internal */ export declare const HubspotData$outboundSchema: z.ZodType; export declare function hubspotDataToJSON(hubspotData: HubspotData): string; export declare function hubspotDataFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=hubspotdata.d.ts.map