import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type LeadsFilter = { /** * Name of the lead to filter on */ name?: string | undefined; /** * First name of the lead to filter on */ firstName?: string | undefined; /** * Last name of the lead to filter on */ lastName?: string | undefined; /** * E-mail of the lead to filter on */ email?: string | undefined; /** * Phone number of the lead to filter on */ phoneNumber?: string | undefined; }; /** @internal */ export declare const LeadsFilter$inboundSchema: z.ZodType; /** @internal */ export type LeadsFilter$Outbound = { name?: string | undefined; first_name?: string | undefined; last_name?: string | undefined; email?: string | undefined; phone_number?: string | undefined; }; /** @internal */ export declare const LeadsFilter$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 LeadsFilter$ { /** @deprecated use `LeadsFilter$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `LeadsFilter$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `LeadsFilter$Outbound` instead. */ type Outbound = LeadsFilter$Outbound; } export declare function leadsFilterToJSON(leadsFilter: LeadsFilter): string; export declare function leadsFilterFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=leadsfilter.d.ts.map