import type { AnchorHTMLAttributes } from 'react';
import React from 'react';
export interface Props extends AnchorHTMLAttributes {
className?: string;
disabled?: boolean;
}
export declare function Link({ children, className, disabled, ...props }: Props): React.JSX.Element;