import { AbstractMessage } from './../AbstractMessage'; import { Type } from './../Type'; export declare class ImportJsonSchemaRequest extends AbstractMessage { type: Type; body: { path: string; json: any; }; }