import type { PluginCreator } from 'postcss' import type { Config } from './config.d' declare const plugin: PluginCreator declare type _Config = Config declare namespace plugin { export type { _Config as Config } } export = plugin