import { default as React } from 'react'; import { LinkProps } from './types.js'; type LinkComponent = (props: LinkProps) => React.ReactElement | null; export declare const Link: LinkComponent; export {};