import { type Plugin } from 'vite'; /** * CSS cascade layer order. * Must be established before any stylesheets load so that Tailwind's own @layer declarations don't override our ordering. Exported so consuming */ export declare const LAYER_ORDER: readonly ['properties', 'theme', 'dx-tokens', 'user-tokens', 'base', 'tw-base', 'dx-base', 'components', 'tw-components', 'dx-components', 'utilities']; export type ThemePluginOptions = { srcCssPath?: string; virtualFileId?: string; verbose?: boolean; }; /** * Vite plugin to configure theme. * Returns the official Tailwind Vite plugin (persistent incremental scanner) alongside the theme plugin. */ export declare const ThemePlugin: (options: ThemePluginOptions) => Plugin[]; //# sourceMappingURL=ThemePlugin.d.ts.map