import type { PluginCreator } from 'postcss'; declare const creator: PluginCreator; export default creator; export { creator as 'module.exports' } /** css-has-pseudo plugin options */ export declare type pluginOptions = { /** Preserve the original notation. default: true */ preserve?: boolean; /** Change the selector that is used to adjust specificity. default: "does-not-exist" */ specificityMatchingName?: string; }; export { }