import { FC } from "react"; export declare type AugmentComponentType = { history: any; }; export declare type AugmentRouteType = { path: string; component: FC; exact?: boolean; middleware?: Array; }; export declare type AugmentComponentRouteType = Pick;