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