export default Router;
type Router = {
    $on?(type: string, callback: (e: any) => void): () => void;
    $set?(props: Partial<$$ComponentProps>): void;
};
declare const Router: import("svelte").Component<{
    routes?: any[];
    fallback?: any;
}, {}, "">;
type $$ComponentProps = {
    routes?: any[];
    fallback?: any;
};
