export declare const BADGE_TEMPLATE = "\n  <svg\n    xmlns=\"http://www.w3.org/2000/svg\"\n    xmlns:xlink=\"http://www.w3.org/1999/xlink\"\n    width=\"{{badgeWidth}}\"\n    height=\"20\"\n  >\n    <linearGradient id=\"s\" x2=\"0\" y2=\"100%\">\n      <stop offset=\"0\" stop-color=\"#bbb\" stop-opacity=\".1\"/>\n      <stop offset=\"1\" stop-opacity=\".1\"/>\n    </linearGradient>\n    <clipPath id=\"r\">\n      <rect width=\"{{badgeWidth}}\" height=\"20\" rx=\"3\" fill=\"#fff\"/>\n    </clipPath>\n    <g clip-path=\"url(#r)\">\n      <rect width=\"{{labelWidth}}\" height=\"20\" fill=\"#555\"/>\n      <rect x=\"{{labelWidth}}\" width=\"{{valueWidth}}\" height=\"20\" fill=\"{{color}}\"/>\n      <rect width=\"{{badgeWidth}}\" height=\"20\" fill=\"url(#s)\"/>\n    </g>\n    <g fill=\"#fff\" font-family=\"Tahoma,Arial\" font-size=\"110\">\n      <text x=\"55\" y=\"140\" fill=\"#000\" fill-opacity=\".3\" transform=\"scale(.1)\">\n        {{label}}\n      </text>\n      <text x=\"50\" y=\"140\" transform=\"scale(.1)\">\n        {{label}}\n      </text>\n      <text x=\"{{labelPosition}}\" y=\"140\" transform=\"scale(.1)\">\n        {{value}}\n      </text>\n    </g>\n  </svg>\n";
