import { Page } from './Page';
export declare class Route {
    path: string;
    page: Page;
    constructor(path: string, page: Page);
}
