/// <reference types="react" />
import { TLinkSizes } from '@/components';
import { TLinkSharedProps } from '@/components/link/types/TLinkSharedProps';
export type TLinkProps = TLinkSharedProps & {
    colorScheme?: string;
    size: TLinkSizes;
};
export declare function Link({ children, href, innerRef, onClick, size, colorScheme, }: TLinkProps): React.ReactElement;
