import * as React from 'react'; import { PolymorphicComponentProps } from '../Box'; export declare type LinkOwnProps = { href?: string; }; export declare type LinkProps = PolymorphicComponentProps; declare const defaultElement = "a"; export declare const Link: (props: LinkProps) => JSX.Element; export {};