import * as unplugin$1 from 'unplugin'; import { UnpluginFactory } from 'unplugin'; import { Plugin } from 'postcss'; type Options = { /** * Whether to generate CSS typings. * @default true */ css?: boolean; /** * Whether to generate SCSS typings. * @default false */ scss?: boolean; /** * Additional PostCSS plugins to use when processing CSS files. * * Can be an array of plugins to be added, or a function that receives the default plugins * and returns a new array of plugins. * @default undefined */ postcssPlugins?: Plugin[] | ((defaultPlugins: Plugin[]) => Plugin[]); }; declare const PLUGIN_NAME = "unplugin-typed-css-modules"; declare const unpluginFactory: UnpluginFactory; declare const unplugin: unplugin$1.UnpluginInstance; export { type Options, PLUGIN_NAME, unplugin as default, unplugin, unpluginFactory };