import React, { PropsWithChildren } from 'react'; /** * @description * A React component which renders an anchor tag and navigates to the specified route when clicked. * This is useful when you want to use a React component in a Vendure UI plugin which navigates to * a route in the admin-ui. * * @example * ```ts * import { Link } from '@vendure/admin-ui/react'; * * export const MyReactComponent = () => { * return Go to my extension; * } * ``` * * @docsCategory react-components */ export declare function Link(props: PropsWithChildren<{ href: string; [props: string]: any; }>): React.JSX.Element;