import { routePath } from "dreamkit";
declare const routePath: (path: string, data?: Record<string, any>) => string;
import { routePath } from "dreamkit"; export default function Users() { return <a href={routePath("/users/:id", { id: 1 })}>User 1</a>;}