import { PluginCreator } from 'postcss'; interface Options { unitToConvert?: string; viewportWidth?: number; viewportHeight?: number; unitPrecision?: number; viewportUnit?: string; fontViewportUnit?: string; selectorBlackList?: (string | RegExp)[]; propList?: string[]; minPixelValue?: number; mediaQuery?: boolean; replace?: boolean; landscape?: boolean; landscapeUnit?: string; landscapeWidth?: number; exclude?: RegExp | RegExp[] | ((file: string) => boolean); include?: RegExp | RegExp[] | ((file: string) => boolean); } declare const plugin: PluginCreator; export { type Options, plugin as default };