import { ParserInterface } from './parser.interface'; import { AbstractPreprocessParser } from './abstract-preprocess.parser'; import { TranslationCollection } from '../utils/translation.collection'; export declare class PipeParser extends AbstractPreprocessParser implements ParserInterface { extract(template: string, path: string): TranslationCollection; protected parseTemplate(template: string, path: string): TranslationCollection; }