import type { PluginCreator } from 'postcss';
/** postcss-media-minmax plugin options */
export type pluginOptions = never;
declare const creator: PluginCreator<pluginOptions>;
export default creator;
