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