/** * Add utilities to Tailwind. * * @export * @param {string} property The Tailwind config key, which will also be the CSS property. Should be in the CSS-in-JS format. * @param {*} config A map of class names => property values. * The property values can be a string tuple where the first value would be the property name, * and the second value the property value. * @param {TailwindPluginHelpers} helpers The Tailwind plugin helpers object. */ export default function (property: string, config: any, { e, theme, variants, addUtilities }: any): void;