import { BaseParser, ParserInfo, TemplateFormat } from './base-parser';
import { ApplicationConfig, FileOutput } from '../types/container-config';
declare class RenderParser extends BaseParser {
    parse(config: ApplicationConfig, templateFormat?: TemplateFormat): any;
    parseFiles(config: ApplicationConfig): {
        [path: string]: FileOutput;
    };
    private sanitizeName;
    private generateDiskName;
    getInfo(): ParserInfo;
}
declare const _default: RenderParser;
export default _default;
