import * as Data from '.'; import { DataBaseOptions } from '../types'; export * from './base'; export * from './relation'; export * from './table'; export * from './table-list'; export type DataDict = { base: Data.DataBase; table: Data.DataTable; tableList: Data.DataTableList; relation: Data.DataRelation; }; export declare const DataDict: { base: typeof Data.DataBase; table: typeof Data.DataTable; tableList: typeof Data.DataTableList; relation: typeof Data.DataRelation; }; export declare const registerCustomData: >>(key: string, klass: Newable]>) => void;