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