import type { Plugin } from 'postcss'; /** * PostCSS plugin for sorting pseudo-selectors (inside and outside at-rules) * based on lvfha ordering, and the at-rules themselves as well. * * Only top level CSS rules will be sorted. * * Using Once due to the catchAll behaviour */ export declare const sortAtomicStyleSheet: (config: { sortAtRulesEnabled: boolean | undefined; sortShorthandEnabled: boolean | undefined; }) => Plugin; export declare const postcss = true;