import BaseClass from "../utils/BaseClass"; import { SingleRelationship } from "../typings/Library"; import { ManualTaxCalculatorCollection } from './ManualTaxCalculator'; export declare class TaxRuleCollection extends BaseClass { static className: string; adjustmentTaxable: boolean; breakDown: Record; countryCodeRegex: string; createdAt: Date; freightTaxable: boolean; giftCardTaxable: boolean; id: string; metadata: object; name: string; notCountryCodeRegex: string; notStateCodeRegex: string; notZipCodeRegex: string; paymentMethodTaxable: boolean; reference: string; referenceOrigin: string; stateCodeRegex: string; taxRate: number; updatedAt: Date; zipCodeRegex: string; manualTaxCalculator: () => SingleRelationship; static define(): void; } declare const TaxRule: import("../typings/Library").BaseResource; export default TaxRule;