import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type PayrollsFilter = { /** * Return payrolls whose pay period is after the start date */ startDate?: string | undefined; /** * Return payrolls whose pay period is before the end date */ endDate?: string | undefined; }; /** @internal */ export declare const PayrollsFilter$inboundSchema: z.ZodType; /** @internal */ export type PayrollsFilter$Outbound = { start_date?: string | undefined; end_date?: string | undefined; }; /** @internal */ export declare const PayrollsFilter$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 PayrollsFilter$ { /** @deprecated use `PayrollsFilter$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PayrollsFilter$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PayrollsFilter$Outbound` instead. */ type Outbound = PayrollsFilter$Outbound; } export declare function payrollsFilterToJSON(payrollsFilter: PayrollsFilter): string; export declare function payrollsFilterFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=payrollsfilter.d.ts.map