import type { PluginCreator } from 'postcss'; /** postcss-contrast-color-function plugin options */ export declare type pluginOptions = { /** Preserve the original notation. default: true */ preserve?: boolean; /** Enable "@csstools/postcss-progressive-custom-properties". default: true */ enableProgressiveCustomProperties?: boolean; }; /** Transform the contrast-color() function in CSS. */ declare const postcssPlugin: PluginCreator; export default postcssPlugin; export { postcssPlugin as 'module.exports' } export { }