import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { PassThroughBody, PassThroughBody$Outbound } from "./passthroughbody.js"; export type FilesSearch = { /** * The query to search for. May match across multiple fields. */ query: string; /** * ID of the drive to filter on */ driveId?: string | undefined; /** * The pass_through property allows passing service-specific, custom data or structured modifications in request body when creating or updating resources. */ passThrough?: Array | undefined; }; /** @internal */ export declare const FilesSearch$inboundSchema: z.ZodType; /** @internal */ export type FilesSearch$Outbound = { query: string; drive_id?: string | undefined; pass_through?: Array | undefined; }; /** @internal */ export declare const FilesSearch$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 FilesSearch$ { /** @deprecated use `FilesSearch$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `FilesSearch$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `FilesSearch$Outbound` instead. */ type Outbound = FilesSearch$Outbound; } export declare function filesSearchToJSON(filesSearch: FilesSearch): string; export declare function filesSearchFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=filessearch.d.ts.map