import { SxProp } from './Base'; import { ForwardRefComponent } from './polymorphic'; import { AllSystemProps } from './system-props'; declare const defaultElement = "a"; export declare type LinkProps = SxProp & AllSystemProps; declare type LinkComponent = ForwardRefComponent; export declare const Link: LinkComponent; export {};