import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type ApplicantsFilter = { /** * Id of the job to filter on */ jobId?: string | undefined; }; /** @internal */ export declare const ApplicantsFilter$inboundSchema: z.ZodType; /** @internal */ export type ApplicantsFilter$Outbound = { job_id?: string | undefined; }; /** @internal */ export declare const ApplicantsFilter$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 ApplicantsFilter$ { /** @deprecated use `ApplicantsFilter$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ApplicantsFilter$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ApplicantsFilter$Outbound` instead. */ type Outbound = ApplicantsFilter$Outbound; } export declare function applicantsFilterToJSON(applicantsFilter: ApplicantsFilter): string; export declare function applicantsFilterFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=applicantsfilter.d.ts.map