declare const config: {
    prefix: string | null;
    matchExtractorFunction: RegExp | null;
    matchRegExp: RegExp;
    matchRegExpWithColon: RegExp;
    matchRegExpKeyFrame: RegExp;
    matchRegExpWithColonKeyFrame: RegExp;
    useColon: boolean;
    ignore: string[];
    createExtractorRegex: (a: string) => RegExp;
    createCSSModuleRegex: (a: string) => RegExp;
    useExtractorFunction: boolean;
    useCSSModule: boolean;
    matchCSSModuleFunction: RegExp;
    globalValues: string[];
    styles: string[];
    remUnits: string[];
    remUnitsNegative: string[];
    widths: string[];
    modes: string[];
};
export default config;
