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