import { default as React } from 'react'; type LinkProps = { /** * The CSS class name. */ className?: string; /** * The type of link. * @default "primary" */ kind?: "primary" | "critical"; /** * The size of link. * @default "medium" */ size?: "small" | "medium"; } & Omit, "rel" | "size">; /** * A link component. */ export declare const Link: React.ForwardRefExoticComponent, "ref"> & React.RefAttributes>; export {}; //# sourceMappingURL=Link.d.ts.map