import type { PluginCreator } from 'postcss'; /** postcss-nesting plugin options */ export type pluginOptions = { /** Avoid the `:is()` pseudo class as much as possible. default: false */ noIsPseudoSelector?: boolean; /** Silence the `@nest` warning. */ silenceAtNestWarning?: boolean; }; declare const creator: PluginCreator; export default creator;