import { GetSchemaRequestBody } from '../../Model/Data'; import { AbstractException } from '../../Model/Exception/AbstractException'; import { AbstractMessage } from './../AbstractMessage'; import { Type } from './../Type'; export declare class GetSchemaRequest extends AbstractMessage { type: Type; body: GetSchemaRequestBody; constructor(path: string, level?: number, uuid?: string, error?: AbstractException, from?: string); }