/** * Copyright (c) 2025-Present, Nitrogen Labs, Inc. * Copyrights licensed under the MIT License. See the accompanying LICENSE file for terms. * * PostCSS 8-compatible version of postcss-for plugin * Original: https://github.com/antyakushev/postcss-for */ import postcss from 'postcss'; interface PostcssForOptions { nested?: boolean; } declare const postcssFor: { (opts?: PostcssForOptions): { Once(root: postcss.Root): void; postcssPlugin: string; }; postcss: boolean; }; export default postcssFor;