import type { Plugin } from 'postcss'; /** * PostCSS plugin which will callback when traversing through each root declaration. */ export declare const extractStyleSheets: (opts?: { callback: (sheet: string) => void; } | undefined) => Plugin; export declare const postcss = true;