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