import { FunctionComponent } from 'react'; import { match, RouteProps } from 'react-router-dom'; export interface IAppRoute extends RouteProps { handler: (value: match) => void; } interface IAppRouterProps { routes: IAppRoute[]; } export declare const AppRouter: FunctionComponent; export {};