import React, { FocusEvent, ForwardRefRenderFunction } from 'react';
import type { StyledProps } from '../common';
import type { TdTagProps } from './type';
/**
 * Tag 组件支持的属性。
 */
export interface TagProps extends TdTagProps, StyledProps {
    /**
     * 标签内容
     */
    tabIndex?: number;
    onFocus?: (e: FocusEvent<HTMLDivElement>) => void;
    onBlur?: (e: FocusEvent<HTMLDivElement>) => void;
}
export declare const TagFunction: ForwardRefRenderFunction<HTMLDivElement, TagProps>;
export declare const Tag: React.ForwardRefExoticComponent<TagProps & React.RefAttributes<HTMLDivElement>>;
export default Tag;
