import React from 'react'; declare const WrapperTag: ({ children }: Record) => React.DetailedReactHTMLElement<{ className: string; }, HTMLElement>; export interface MyTagEDProps { name?: string; title?: string; tagType?: any; color?: any; className?: any; checkable?: boolean; } declare const TagED: React.FC; export default TagED; export { WrapperTag };