/// import { HintType } from "../state/actions/PointSelectionActions"; export interface SearchProps { ehrCode?: string | undefined; cadastreCode?: string | undefined; } export interface SearchState { app_url: string; isFirstPersonViewShowing: boolean; } export interface SearchDispatch { openInfoModal: (id: string, hint?: HintType) => void; hilightObject: (hilightId: string) => void; hilightKY: (kyId: string | undefined) => void; setIsFirstPersonViewShowing: (val: boolean) => void; } export declare const Search: ({ ehrCode, cadastreCode, app_url, openInfoModal, hilightObject, hilightKY, isFirstPersonViewShowing, setIsFirstPersonViewShowing, }: SearchProps & SearchState & SearchDispatch) => JSX.Element; export default Search;