import SearchType from "../enums/search-type";
import TableType from "../enums/table-type";
import { AddressModel } from "./address-model";
import { BuildingModel } from "./building-model";
import { CadastreModel } from "./cadastre-model";
import { ProjectModel } from "./project-model";
import { PropertyModel } from "./property-model";
import { StreetModel } from "./street-model";
export interface TableInputModel {
    tableType?: TableType;
    searchType?: SearchType;
    selectedStreet?: StreetModel;
    selectedAddress?: AddressModel;
    selectedBuilding?: BuildingModel;
    streetListData?: StreetModel[];
    projectListData?: ProjectModel[];
    cadastreListData?: CadastreModel[];
    addressListData?: AddressModel[];
    buildingListData?: BuildingModel[];
    propertyListData?: PropertyModel[];
}
//# sourceMappingURL=table-input-model.d.ts.map