import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { HubspotData, HubspotData$Outbound } from "./hubspotdata.js"; import { OAuthRefreshTokenCredentials, OAuthRefreshTokenCredentials$Outbound } from "./oauthrefreshtokencredentials.js"; export type AuthenticatorHubspotConnection = { provider: "hubspot"; data: HubspotData; hubId: string; hubDomain: string; credentials: OAuthRefreshTokenCredentials; }; /** @internal */ export declare const AuthenticatorHubspotConnection$inboundSchema: z.ZodType; /** @internal */ export type AuthenticatorHubspotConnection$Outbound = { provider: "hubspot"; data: HubspotData$Outbound; hub_id: string; hub_domain: string; credentials: OAuthRefreshTokenCredentials$Outbound; }; /** @internal */ export declare const AuthenticatorHubspotConnection$outboundSchema: z.ZodType; export declare function authenticatorHubspotConnectionToJSON(authenticatorHubspotConnection: AuthenticatorHubspotConnection): string; export declare function authenticatorHubspotConnectionFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=authenticatorhubspotconnection.d.ts.map