import { ElementType, default as React } from 'react'; import { PolymorphicComponentPropsWithRef } from '../../typings'; type LinkBaseProps = { /** * ID to find this component in testing tools (e.g.: cypress, testing library, and jest). */ testId?: string; /** * Specifies the component variant. */ variant?: 'default' | 'display' | 'inline'; /** * Specifies the size variant. */ size?: 'small' | 'regular'; /** * Defines the use of inverted colors. */ inverse?: boolean; }; export type LinkElementType = ElementType; export type LinkProps = PolymorphicComponentPropsWithRef; declare const Link: React.ForwardRefExoticComponent, "ref">, "ref"> & React.RefAttributes>; export default Link; //# sourceMappingURL=Link.d.ts.map