import { ActionIconProps } from "../../ActionIcon/type.mjs";
import "../../ActionIcon/index.mjs";

//#region src/chat/TokenTag/type.d.ts
interface TokenTagProps extends ActionIconProps {
  maxValue: number;
  mode?: 'remained' | 'used';
  showInfo?: boolean;
  text?: {
    overload?: string;
    remained?: string;
    used?: string;
  };
  value: number;
}
//#endregion
export { TokenTagProps };
//# sourceMappingURL=type.d.mts.map