import { Content } from '../content';
import { Context } from '../context';
import { Route } from '../manager/router';
export interface FoxpageRouterRegisterHooks {
    registerRouter?: () => Promise<Route>;
    beforeRouteMatch?: () => Promise<Content>;
    afterRouteMatch?: (ctx: Context) => Promise<Record<string, any>>;
}
