import React from 'react'; import { BoxSystemProps } from './Box'; import { StyleConfig } from '../utils/styleConfig'; export declare type LinkParts = { link: 'hover' | 'focus' | 'active'; }; declare type LinkDOMProps = React.ComponentPropsWithRef<'a'>; declare type LinkStyleConfigProp = { styleConfig?: StyleConfig; }; declare type LinkSystemProps = BoxSystemProps; export declare type LinkProps = LinkDOMProps & LinkStyleConfigProp & LinkSystemProps & { as?: React.ElementType; to?: string; }; export declare const Link: React.ForwardRefExoticComponent & React.RefAttributes>; export {};