import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type InvoiceItemsFilter = { /** * Name of Invoice Items to search for */ name?: string | undefined; }; /** @internal */ export declare const InvoiceItemsFilter$inboundSchema: z.ZodType; /** @internal */ export type InvoiceItemsFilter$Outbound = { name?: string | undefined; }; /** @internal */ export declare const InvoiceItemsFilter$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 InvoiceItemsFilter$ { /** @deprecated use `InvoiceItemsFilter$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `InvoiceItemsFilter$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `InvoiceItemsFilter$Outbound` instead. */ type Outbound = InvoiceItemsFilter$Outbound; } export declare function invoiceItemsFilterToJSON(invoiceItemsFilter: InvoiceItemsFilter): string; export declare function invoiceItemsFilterFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=invoiceitemsfilter.d.ts.map