import * as React from 'react'; import './index.scss'; import { Location } from "./entity"; export interface LocationProps { currentLocation: Location; clickHandle: () => void; } declare const NavigationLeft: React.FC; export default NavigationLeft;