import { SimpleDatabase } from "../database/simple-database"; export declare class SimpleDataDictionary { static dataDictionary: any; constructor(); static getSimpleDatabaseTable(table: string): SimpleDatabase; static getTablesFieldPropertiesObject(tableName: string, fieldName: string): any; static getTableFieldPropertiesListSelectOptions(tableName: string, fieldName: string): any[]; static getTablesFieldsObject(tableName: string, includeViews?: boolean): any; static getTableFieldsListSelectOptions(tableName: string, includeViews?: boolean): any[]; static getTablesObject(): any; static getTablesListSelectOptions(): any[]; static getTableFieldSelectOptions(tableName: string, fieldName: string): any; static registerDataDictionary(dataDictionary: any): void; }