import { PluginWithHandler } from 'tailwindcss/plugin'; export { PluginWithHandler } from 'tailwindcss/plugin'; /** * Tailwind CSS plugin for the UAE Dirham symbol. * * Provides utility classes for rendering the Dirham symbol (U+20C3) * with proper font-family, weight, and sizing. * * @example * ```ts * // tailwind.config.ts * import dirhamPlugin from "dirham/tailwind"; * * export default { * plugins: [dirhamPlugin], * }; * ``` * * Then in HTML: * ```html * * * 1,234.50 * ``` */ declare const dirhamPlugin: PluginWithHandler; export { dirhamPlugin as default };