import { ConventionService } from "./ConventionService";
export declare class AssetConverter {
    conventions: ConventionService;
    private configuration;
    private assetFolderRegEx;
    cdn_full_path: string;
    cdn_enabled: boolean;
    assets_replace: string;
    isWindows: boolean;
    newline: RegExp;
    break: string;
    constructor(cdn_path: string);
    fromRemoteReplacements: {
        pattern: RegExp;
        replacement: (match: any, p1: any) => string;
    }[];
    convertFromRemote(content?: string): string;
    fromLocalReplacements: {
        pattern: RegExp;
        replacement: (match: any, p1: any) => string;
    }[];
    convertFromLocal(content?: string): string;
    convertForPreview(content: string): string;
}
