import { ResultException } from "./ResultException";
import { WsclientError } from "./WsclientError";
export declare class ServerResultException extends ResultException {
    constructor(wsClientError: WsclientError, errorMessage?: string, errorCode?: number, stackTrace?: string);
    static createWebserviceException(errorMessage?: string, errorCode?: number, stackTrace?: string): ServerResultException;
    toString(): string;
}
