import type { PluginCreator } from 'postcss'; declare const creator: PluginCreator; export default creator; export { creator as 'module.exports' } /** css-blank-pseudo plugin options */ export declare type pluginOptions = { /** Preserve the original notation. default: true */ preserve?: boolean; /** Replacement for ":blank". default: "[blank]" */ replaceWith?: string; /** Do not inject "js-blank-pseudo" before each selector with "[blank]". default: false */ disablePolyfillReadyClass?: boolean; }; export { }