import React from "react"; import { LocationStateType } from "./hooks"; declare type MapLocationStateToPropsType = (state: LocationStateType) => any; export declare const withLocation: (mapLocationStateToProps?: MapLocationStateToPropsType | undefined) => (BaseComponent: React.Component) => (props: any) => JSX.Element; export declare const withLastNotifiedLocation: (mapLastNotifiedLocationStateToProps?: MapLocationStateToPropsType | undefined) => (BaseComponent: React.Component) => (props: any) => JSX.Element; export {};