import { Config } from './types'; export type ConfigUtils = ReturnType; export declare function createConfigUtils(config: Config): { getClassGroupId: (className: string) => string | undefined; getConflictingClassGroupIds: (classGroupId: string, hasPostfixModifier: boolean) => readonly string[]; cache: import("./lru-cache").LruCache; splitModifiers: (className: string) => { modifiers: string[]; hasImportantModifier: boolean; baseClassName: string; maybePostfixModifierPosition: number | undefined; }; };