import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type DrivesFilter = { /** * ID of the drive group to filter on */ groupId?: string | undefined; }; /** @internal */ export declare const DrivesFilter$inboundSchema: z.ZodType; /** @internal */ export type DrivesFilter$Outbound = { group_id?: string | undefined; }; /** @internal */ export declare const DrivesFilter$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 DrivesFilter$ { /** @deprecated use `DrivesFilter$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `DrivesFilter$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `DrivesFilter$Outbound` instead. */ type Outbound = DrivesFilter$Outbound; } export declare function drivesFilterToJSON(drivesFilter: DrivesFilter): string; export declare function drivesFilterFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=drivesfilter.d.ts.map