import { ReactNode } from 'react';
import { BaseComponentAttributes, BasicSizeType } from '../utils/types';
export interface TagProps extends BaseComponentAttributes {
    size?: BasicSizeType;
    type?: 'normal' | 'primary';
    disabled?: boolean;
    color?: string;
    textColor?: string;
    children?: ReactNode;
    onClick?: (e?: any) => void;
}
declare const _default: import("react").ForwardRefExoticComponent<TagProps & import("react").RefAttributes<any>>;
export default _default;
