import { ITskParkingSectionLevel } from "../../schema-definitions/datasources/interfaces/ITskParkingSectionLevel"; /** * Groups section items by their parent section (idSection) and determines the unified street name. * - If all items in a section share the same non-null streetNameValid, that value is used. * - Otherwise (multiple streets, any null), the section gets no street name. */ export declare function buildStreetNameMap(sectionItems: ITskParkingSectionLevel[]): Map;