import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { GoogleFolderData, GoogleFolderData$Outbound } from "./googlefolderdata.js"; import { OAuthRefreshTokenCredentials, OAuthRefreshTokenCredentials$Outbound } from "./oauthrefreshtokencredentials.js"; export type AuthenticatorGoogleDriveConnection = { provider: "google_drive"; data: Array; /** * The email of the Google Drive account this is for */ email: string; credentials: OAuthRefreshTokenCredentials; }; /** @internal */ export declare const AuthenticatorGoogleDriveConnection$inboundSchema: z.ZodType; /** @internal */ export type AuthenticatorGoogleDriveConnection$Outbound = { provider: "google_drive"; data: Array; email: string; credentials: OAuthRefreshTokenCredentials$Outbound; }; /** @internal */ export declare const AuthenticatorGoogleDriveConnection$outboundSchema: z.ZodType; export declare function authenticatorGoogleDriveConnectionToJSON(authenticatorGoogleDriveConnection: AuthenticatorGoogleDriveConnection): string; export declare function authenticatorGoogleDriveConnectionFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=authenticatorgoogledriveconnection.d.ts.map