import React from 'react'; import { LinkComponent, LinkComponentProps } from './types'; type Props = { linkComponent?: LinkComponent; } & LinkComponentProps; export declare const Link: ({ href, linkComponent, truncate, ...rest }: Props) => React.ReactElement; export {};