import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export declare const Type: { readonly File: "file"; readonly Folder: "folder"; }; export type Type = ClosedEnum; export type SharepointFileData = { id: string; name: string; path: string; type: Type; driveId: string | null; }; /** @internal */ export declare const Type$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const Type$outboundSchema: z.ZodNativeEnum; /** @internal */ export declare const SharepointFileData$inboundSchema: z.ZodType; /** @internal */ export type SharepointFileData$Outbound = { id: string; name: string; path: string; type: string; drive_id: string | null; }; /** @internal */ export declare const SharepointFileData$outboundSchema: z.ZodType; export declare function sharepointFileDataToJSON(sharepointFileData: SharepointFileData): string; export declare function sharepointFileDataFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=sharepointfiledata.d.ts.map