import React, { FC } from 'react'; import { TagProps } from '../Tag'; declare type TagGroupChildType = React.ReactElement | boolean | null | undefined; /** * TagGroup properties */ export interface TagGroupPropsStrict { /** Tag Elements */ children: TagGroupChildType | TagGroupChildType[]; /** Adds one or more classnames for an element */ className?: string; } export interface TagGroupProps extends TagGroupPropsStrict { /** Unstrict Props */ [propName: string]: any; } export declare const TagGroup: FC; export {};