import React from 'react';
import { TEXT_SIZES } from './constants';
export type TypographyLinkProps = Omit<React.AnchorHTMLAttributes<HTMLAnchorElement>, 'type'> & {
    title?: string;
    disabled?: boolean;
    ellipsis?: boolean;
    size?: typeof TEXT_SIZES[number];
    id?: string;
    children?: React.ReactNode;
    ['aria-label']?: string;
};
declare const Link: React.ForwardRefExoticComponent<Omit<React.AnchorHTMLAttributes<HTMLAnchorElement>, "type"> & {
    title?: string;
    disabled?: boolean;
    ellipsis?: boolean;
    size?: (typeof TEXT_SIZES)[number];
    id?: string;
    children?: React.ReactNode;
    "aria-label"?: string;
} & React.RefAttributes<HTMLElement>>;
export { Link, };
//# sourceMappingURL=link.d.ts.map