import { MapperTable } from "./mapper-table";
export declare class MetadataTableBase<T> {
    newable: new () => T;
    mapperTable: MapperTable;
    constructor(newable: new () => T);
}
