import { VALID_MINIFIERS_KEYS } from '../constants/minifiers'; import type BaseConverter from '../converters/ConverterBase'; export declare type Config = { type?: (typeof VALID_MINIFIERS_KEYS)[number]; templateString?: string; prefix?: string; reservedNames?: string[]; }; export declare type InjectConfig = { localIdentName?: string; classnamesMinifier: BaseConverter; };