import React from 'react'; import type { Colors, CommonComponentProps, FontWeights, MarginModifierProp, ModifierClassProp, TypeSizes } from '../types'; import type { GetRef } from '../utils/refs'; interface LinkTextProps extends CommonComponentProps, MarginModifierProp, ModifierClassProp { children?: React.ReactNode; color?: Colors; download?: boolean | string; getRef?: GetRef; href?: string; id?: string; onClick?: React.MouseEventHandler; rel?: string; size?: TypeSizes; target?: string; title?: string; weight?: FontWeights; } export declare function LinkText({ _modifierClass, 'aria-describedby': ariaDescribedby, 'aria-label': ariaLabel, 'aria-labelledby': ariaLabelledby, children, color, download, getRef, href, id, margin, onClick, rel, size, target, title, weight, ...rest }: LinkTextProps): React.JSX.Element; export {};