import { default as React } from 'react'; import { Size } from '../../utils/size'; type LinkProps = { /** * The CSS class name. */ className?: string; /** * The color variant of the link. * @default "primary" */ kind?: "primary" | "critical"; /** * The t-shirt size of the link. * @default "md" */ size?: Size & ("sm" | "md"); } & Omit, "rel" | "size">; /** * A link component. */ export declare const Link: React.ForwardRefExoticComponent, "ref"> & React.RefAttributes>; export {}; //# sourceMappingURL=Link.d.ts.map