import React from "react"; declare type Item = { latitude: number; longitude: number; name: string; checked?: boolean; }; declare const SearchInfoList: React.ForwardRefExoticComponent<{ list: string | Array; handler: (item: Item, list: Array, index: number) => void; tabIndex?: number | undefined; activeIndex?: number | undefined; } & React.RefAttributes>; export { SearchInfoList };