import { IStoreWithBase, Routes } from '../context/context.interface';
/**
 * Start Director Router
 * @param {IStoreWithBase<T, V>} appStore
 * @param {Routes<T, V>} routes
 */
export declare function startRouter<T>(appStore: IStoreWithBase<T>, routes: Routes<T>): void;
