import React from 'react'; export interface Municipality { readonly GDENR: number; readonly ORTNAME?: string; readonly PLZ4?: number; readonly PLZ6?: number; readonly GDENAMK?: string; readonly KTKZ: string; readonly NORMORTSNAME?: string; readonly NORMGEMEINDE: string; readonly URL?: string; [x: string]: any; } export interface Props { municipalityData?: string; dedupe?: boolean; resetOnSelect?: boolean; onSelectionHandler: (municipality: Municipality) => void; locale?: 'de' | 'fr'; placeholder?: string; iconOnRightSide?: boolean; maxResults?: number; customMunicipalities?: Municipality[]; selectedMunicipality?: Municipality; selectedMunicipalityId?: number; onCloseHandler?: () => void; inputBackgroundColor?: string; resultBackgroundColor?: string; propertyToSearch?: keyof Municipality; } export declare const MunicipalitySearch: ({ municipalityData, locale, resultBackgroundColor, inputBackgroundColor, maxResults, propertyToSearch, dedupe, resetOnSelect, onSelectionHandler, placeholder, iconOnRightSide, customMunicipalities, selectedMunicipality, selectedMunicipalityId, onCloseHandler, }: Props) => React.JSX.Element; //# sourceMappingURL=municipalitySearch.d.ts.map