import { Parameter } from "./index";
export interface WebserviceExceptionInterface {
    errorCode: number;
    errorMessage: string;
    stackTrace?: string;
}
export declare class WebserviceException implements WebserviceExceptionInterface, Parameter {
    errorCode: number;
    errorMessage: string;
    stackTrace?: string;
    constructor(data: any);
    static getErrorCodeDefault(): number;
    static getErrorCodeDescription(): string;
    static getErrorMessageDefault(): string;
    static getErrorMessageDescription(): string;
    static getStackTraceDefault(): string;
    static getStackTraceDescription(): string;
    static fromJson(data: any): WebserviceException;
    toJson(): any;
    clone(): WebserviceException;
}
