///
import type { WidgetRoute } from "../core/routes";
interface Props extends React.AnchorHTMLAttributes {
children: JSX.Element | string;
to: WidgetRoute;
params?: {
[key: string]: any | undefined;
};
disabled?: boolean;
}
export declare const RouterLink: ({ children, to, params, disabled, ...props }: Props) => JSX.Element;
export {};