import type { Component } from "ripple"; import { ExtractPathParams } from "./route"; export type RouteProps = { params: ExtractPathParams; searchParams?: Record; }; export declare function Route(props: { path: string, element: Component }): void; export declare function Router(props: { children: Component }): void; export declare function Link(props: { to: string; children: Component }): void; export declare function navigateTo(path: string): void;