import { TranslationCollection } from '../utils/translation.collection.js'; import { PostProcessorInterface } from './post-processor.interface.js'; interface Options { prefix: string; } export declare class StripPrefixPostProcessor implements PostProcessorInterface { private options; name: string; constructor(options: Options); process(draft: TranslationCollection): TranslationCollection; } export {};