import * as React from 'react'; import './index.scss'; import { Location } from "./position"; interface LocationProps { itemArray: Location[]; open: boolean; setIsOpen: () => void; setCurrent: (data: Location) => void; currentLocation: Location; } declare const ContentList: React.FC; export default ContentList;