export declare class SwmmModel { model: any; constructor(model: any); oneDimensionalTables: string[]; /** * Get the value of a property of a one-dimensional table object. * @param tableName A swmm model one-dimensional table name, e.g.: SUBCATCHMENTS, JUNCTIONS, etc. * @param keyName The name of the key within the table. Generally referred to as the object name. * @param valName The name of the property of the object. * @returns */ get_table_val(tableName: string, keyName: string, valName: string): any; set_table_val(setModel: Function, tableName: string, keyName: string, valName: string, updateVal: string): void; }