import { ReactElement } from 'react'; import { LinkProps as ChakraLinkProps, ResponsiveValue } from '@chakra-ui/react'; export declare const linkIconVariants: readonly ["link-primary", "link-accent", "link-secondary", "link-destroy"]; export type LinkIconVariant = (typeof linkIconVariants)[number]; export declare const linkIconSizes: readonly ["s", "m", "l"]; export type LinkIconSize = (typeof linkIconSizes)[number]; export interface LinkIconProps extends Omit { icon: ReactElement; isInline?: boolean; size?: ResponsiveValue; testId?: string; variant?: ResponsiveValue; }