import React, { type JSX } from 'react'; import './index.css'; type SizeMap = { S: 32; M: 40; }; export type TagItemProps = { label: string; translatedLabel?: string; bgColor?: string; bgImage?: string; status?: 'default' | 'active' | 'inactive'; size?: keyof SizeMap; /** * The component used for root element. * @type T extends React.ElementType = 'button' */ component?: T; } & Omit, 'children'>; declare const _default: React.MemoExoticComponent<((p: TagItemProps) => JSX.Element)>; export default _default; //# sourceMappingURL=index.d.ts.map