import React, { AnchorHTMLAttributes, ButtonHTMLAttributes } from 'react';
import { IconType } from '../Icon/Icon';
export interface ButtonProps extends ButtonHTMLAttributes {
$disabled?: boolean;
}
export interface AnchorProps extends AnchorHTMLAttributes {
$disabled?: boolean;
}
export declare const Link: React.FC<{
to?: string;
icon: IconType;
onClick?: () => void;
badge?: string;
disabled?: boolean;
children?: React.ReactNode;
}>;