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