import type { PluginCreator } from 'postcss'; /** postcss-mono-repo-playground--plugin-a plugin options */ export type pluginOptions = { /** Preserve the original notation. default: false */ preserve?: boolean; /** Replacement color */ color?: string; }; declare const creator: PluginCreator; export default creator;