@clerk/clerk-js
Version:
Clerk JS library
8 lines (7 loc) • 297 B
TypeScript
import { Link } from '../customizables';
import type { PropsOfComponent } from '../styledSystem';
type RouterLinkProps = PropsOfComponent<typeof Link> & {
to?: string;
};
export declare const RouterLink: (props: RouterLinkProps) => import("@emotion/react/jsx-runtime").JSX.Element;
export {};