import { PluginCreator } from 'postcss';

interface ColorGolfOptions {
    skip?: (string | RegExp)[];
    preferHex?: boolean;
    ignoreApproximatedSpaces?: boolean;
    ignoredSpaces?: string[];
}
declare const colorGolfPlugin: PluginCreator<ColorGolfOptions>;

export { type ColorGolfOptions, colorGolfPlugin as default };
