import React, { ReactNode, ComponentClass } from 'react'; import * as model from './model'; declare type ComponentProps = { location: model.Location; path: string; match: model.Match; }; export interface Props { location: model.Location; viewport: model.Viewport | model.Viewport[]; render: (_: ComponentProps) => ReactNode; component: ComponentClass; path: string; match: model.Match; computedMatch: model.Match; exact: boolean; strict: boolean; sensitive: boolean; children: ReactNode; } declare const _default: React.FunctionComponent; export default _default;