import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { OAuthRefreshTokenCredentials, OAuthRefreshTokenCredentials$Outbound } from "./oauthrefreshtokencredentials.js"; import { SharepointData, SharepointData$Outbound } from "./sharepointdata.js"; export type AuthenticatorSharepointConnection = { provider: "sharepoint"; data: SharepointData; /** * The email of the Sharepoint account this is for */ userEmail: string; credentials: OAuthRefreshTokenCredentials; }; /** @internal */ export declare const AuthenticatorSharepointConnection$inboundSchema: z.ZodType; /** @internal */ export type AuthenticatorSharepointConnection$Outbound = { provider: "sharepoint"; data: SharepointData$Outbound; user_email: string; credentials: OAuthRefreshTokenCredentials$Outbound; }; /** @internal */ export declare const AuthenticatorSharepointConnection$outboundSchema: z.ZodType; export declare function authenticatorSharepointConnectionToJSON(authenticatorSharepointConnection: AuthenticatorSharepointConnection): string; export declare function authenticatorSharepointConnectionFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=authenticatorsharepointconnection.d.ts.map