import React from 'react'; import { WindowLocation, NavigateFn } from '@reach/router'; import { Subtract } from 'utility-types'; export interface WithLocationProps { location: WindowLocation; navigate: NavigateFn; } declare const withLocation: (Component: React.ComponentType) => React.FunctionComponent>; export default withLocation;