import { type Plugin } from 'rollup'; export interface RollupPostCSSLitOptions { /** * Files matching any of these patterns will be processed by PostCSS-Lit. * For more information, see the [`glob` primer](https://github.com/isaacs/node-glob#glob-primer). * @default "**\/*.{js,ts}" */ globInclude: string | string[]; /** * Files matching any of these patterns will be excluded. * For more information, see the [`glob` primer](https://github.com/isaacs/node-glob#glob-primer). * @default "" */ globExclude: string | string[]; } /** * A Rollup plugin that processes CSS from template * literals inside JS/TS files using PostCSS. * * @param {Partial} options Optional plugin options. * @return {Plugin} A Rollup plugin object. */ export declare const rollupPostCSSLit: (options?: Partial) => Plugin;