import type { Plugin } from 'postcss'; /** * Parent orphened pseudos PostCSS plugin. * This plugin will move child nested orphened pseudos to the parent declaration. * * E.g: `.class { &:hover {} }` will become `.class:hover {}` * * Requires the use of Once over Rule else it runs into conflicts with the postcss-nested plugin */ export declare const parentOrphanedPseudos: () => Plugin; export declare const postcss = true;