import type * as Merge from "../../../index"; /** * Returns PURCHASE if the tax component corresponds to a purchase tax or SALES if the tax component corresponds to a sales tax. * * * `SALES` - SALES * * `PURCHASE` - PURCHASE */ export type TaxComponentComponentType = Merge.accounting.ComponentTypeEnum | string;