import * as React from 'react';
export interface TagGroupProps {
    /** The tags to be displayed inside the group. */
    children: React.ReactNode;
    /** CSS class names to apply to the tag group. */
    className?: string;
}
export declare const TagGroup: React.ForwardRefExoticComponent<TagGroupProps & React.RefAttributes<HTMLDivElement>>;
//# sourceMappingURL=TagGroup.d.ts.map