import Table from '../helpers/Table';
export declare enum TaxTreatment {
    GRAVADO_IVA = 1,
    EXONERADO__ART__100___LEY_6380_2019_ = 2,
    EXENTO = 3,
    GRAVADO_PARCIAL__GRAV__EXENTO_ = 4
}
declare const _default: Table<{
    0: ["_id", TaxTreatment];
    1: ["description", string];
}, {
    0: TaxTreatment;
    1: string;
}, TaxTreatment, Required<{
    description?: string | undefined;
    _id?: TaxTreatment | undefined;
}>>;
export default _default;
