import Table from '../helpers/Table';
export declare enum TaxpayerType {
    PERSONA_FISICA = 1,
    PERSONA_JURIDICA = 2
}
declare const _default: Table<{
    0: ["_id", TaxpayerType];
    1: ["description", string];
}, {
    0: TaxpayerType;
    1: string;
}, TaxpayerType, Required<{
    description?: string | undefined;
    _id?: TaxpayerType | undefined;
}>>;
export default _default;
