import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type FilesFilter = { /** * ID of the drive to filter on */ driveId?: string | undefined; /** * ID of the folder to filter on. The root folder has an alias "root" */ folderId?: string | undefined; /** * Only return files and folders that are shared */ shared?: boolean | undefined; }; /** @internal */ export declare const FilesFilter$inboundSchema: z.ZodType; /** @internal */ export type FilesFilter$Outbound = { drive_id?: string | undefined; folder_id?: string | undefined; shared?: boolean | undefined; }; /** @internal */ export declare const FilesFilter$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace FilesFilter$ { /** @deprecated use `FilesFilter$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `FilesFilter$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `FilesFilter$Outbound` instead. */ type Outbound = FilesFilter$Outbound; } export declare function filesFilterToJSON(filesFilter: FilesFilter): string; export declare function filesFilterFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=filesfilter.d.ts.map