import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import * as components from "../components/index.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type CreateAuthenticatorPayload = (components.OAuthCredentials & { provider: "atlassian"; }) | (components.OAuthCredentials & { provider: "dropbox"; }) | (components.OAuthCredentials & { provider: "microsoft"; }) | (components.OAuthCredentials & { provider: "salesforce"; }) | (components.OAuthCredentials & { provider: "slack"; }) | (components.OAuthCredentials & { provider: "hubspot"; }) | components.CreateGoogleAuthenticator; /** @internal */ export declare const CreateAuthenticatorPayload$inboundSchema: z.ZodType; /** @internal */ export type CreateAuthenticatorPayload$Outbound = (components.OAuthCredentials$Outbound & { provider: "atlassian"; }) | (components.OAuthCredentials$Outbound & { provider: "dropbox"; }) | (components.OAuthCredentials$Outbound & { provider: "microsoft"; }) | (components.OAuthCredentials$Outbound & { provider: "salesforce"; }) | (components.OAuthCredentials$Outbound & { provider: "slack"; }) | (components.OAuthCredentials$Outbound & { provider: "hubspot"; }) | components.CreateGoogleAuthenticator$Outbound; /** @internal */ export declare const CreateAuthenticatorPayload$outboundSchema: z.ZodType; export declare function createAuthenticatorPayloadToJSON(createAuthenticatorPayload: CreateAuthenticatorPayload): string; export declare function createAuthenticatorPayloadFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=createauthenticator.d.ts.map