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