import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type TaxRatesFilter = { /** * Boolean to describe if tax rate can be used for asset accounts */ assets?: boolean | undefined; /** * Boolean to describe if tax rate can be used for equity accounts */ equity?: boolean | undefined; /** * Boolean to describe if tax rate can be used for expense accounts */ expenses?: boolean | undefined; /** * Boolean to describe if tax rate can be used for liability accounts */ liabilities?: boolean | undefined; /** * Boolean to describe if tax rate can be used for revenue accounts */ revenue?: boolean | undefined; }; /** @internal */ export declare const TaxRatesFilter$inboundSchema: z.ZodType; /** @internal */ export type TaxRatesFilter$Outbound = { assets?: boolean | undefined; equity?: boolean | undefined; expenses?: boolean | undefined; liabilities?: boolean | undefined; revenue?: boolean | undefined; }; /** @internal */ export declare const TaxRatesFilter$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 TaxRatesFilter$ { /** @deprecated use `TaxRatesFilter$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `TaxRatesFilter$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `TaxRatesFilter$Outbound` instead. */ type Outbound = TaxRatesFilter$Outbound; } export declare function taxRatesFilterToJSON(taxRatesFilter: TaxRatesFilter): string; export declare function taxRatesFilterFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=taxratesfilter.d.ts.map