import React from 'react';
export declare type Key = number | string;
export interface TagGroupProps {
    /** @ignore */
    children?: React.ReactNode;
    /**
     * 紧凑型布局
     */
    compact?: boolean;
    /**
     * 暴露的Tag数量
     */
    exposeCount?: number;
    /**
     * 是否自动按照宽度调整展示数量
     *  */
    autoAdjustment?: boolean;
    /** 弹出层的 popover props */
    popoverProps?: any;
}
declare const _default: React.MemoExoticComponent<(props: TagGroupProps & React.HTMLAttributes<HTMLDivElement>) => JSX.Element | null>;
export default _default;
