import { Plugin } from "chart.js"; import { Config as TailwindConfig } from "tailwindcss"; interface ParsableOptions extends Record { color: string; borderColor: string; backgroundColor: string[] | string; hoverBorderColor: string; hoverBackgroundColor: string; pointBackgroundColor: string; pointBorderColor: string; pointHoverBackgroundColor: string; pointHoverBorderColor: string; } declare const twColorsPlugin: (tailwindConfig: TailwindConfig, defaults?: Partial) => Plugin; export = twColorsPlugin;