import type { LoaderContext } from 'webpack/types'; import type ConverterBase from './ConverterBase'; declare class ConverterCustom implements ConverterBase { cache: { [resource: string]: { [className: string]: string; }; }; prefix: string; constructor(prefix?: string); getLocalIdent(context: LoaderContext, localIdentName: string, origName: string, options: unknown): string; } export default ConverterCustom;