import { Ref } from "react";
import { TagProps } from "antd";

//#region src/Tag/type.d.ts
interface TagProps$1 extends Omit<TagProps, 'color' | 'variant'> {
  color?: TagProps['color'] | 'info';
  ref?: Ref<HTMLDivElement>;
  size?: 'small' | 'middle' | 'large';
  variant?: 'filled' | 'outlined' | 'borderless';
}
//#endregion
export { TagProps$1 as TagProps };
//# sourceMappingURL=type.d.mts.map