import { RouteFileJSONInterface } from '../../route-file.json.interface';
import { RouteFileInterface } from '../../route-file.interface';
export declare class RouteExporterJSON {
    fileType: string;
    fileExtension: string;
    static export(routeFile: RouteFileInterface): RouteFileJSONInterface;
    static getAsString(routeFile: RouteFileInterface): Promise<string>;
    export(routeFile: RouteFileInterface): RouteFileJSONInterface;
    getAsString(routeFile: RouteFileInterface): Promise<string>;
}
