import { TagProps } from 'antd';
import { FC } from 'react';
import { TAG, TComponentProps } from '../../Types';
interface IChildren extends Omit<TagProps, 'children'> {
    children: TComponentProps[];
}
export interface ITag {
    ctype: typeof TAG;
    props: IChildren;
}
declare const Tag: FC<ITag>;
export default Tag;
