import { UnionOmit } from '@co-hooks/util';
import { AnchorHTMLAttributes, MouseEvent } from 'react';
export interface ILink {
    disabled?: boolean;
    onClick?: (e: MouseEvent<HTMLElement>) => void;
}
export declare type ILinkProps = UnionOmit<ILink, AnchorHTMLAttributes<HTMLAnchorElement>>;
export declare function Link(props: ILinkProps): JSX.Element;
