import type { PluginCreator } from "postcss";
import type { Load } from "./load.d.cts";
interface InteroperableCSSOptions {
    extensions?: string[];
    load?: Load;
}
declare const plugin: PluginCreator<InteroperableCSSOptions>;
export = plugin;
