import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { FolderData, FolderData$Outbound } from "./folderdata.js"; import { OAuthRefreshTokenCredentials, OAuthRefreshTokenCredentials$Outbound } from "./oauthrefreshtokencredentials.js"; export type AuthenticatorDropboxConnection = { provider: "dropbox"; data: FolderData; /** * The email of the Dropbox account this is for */ email: string; credentials: OAuthRefreshTokenCredentials; }; /** @internal */ export declare const AuthenticatorDropboxConnection$inboundSchema: z.ZodType; /** @internal */ export type AuthenticatorDropboxConnection$Outbound = { provider: "dropbox"; data: FolderData$Outbound; email: string; credentials: OAuthRefreshTokenCredentials$Outbound; }; /** @internal */ export declare const AuthenticatorDropboxConnection$outboundSchema: z.ZodType; export declare function authenticatorDropboxConnectionToJSON(authenticatorDropboxConnection: AuthenticatorDropboxConnection): string; export declare function authenticatorDropboxConnectionFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=authenticatordropboxconnection.d.ts.map