import StackTraceElement = require('./StackTraceElement');
declare class RemoteException {
    private static CODE_HAZELCAST_INSTANCE_NOT_ACTIVE;
    private static CODE_IO_ERROR;
    private static CODE_AUTHENTICATION_ERROR;
    errorCode: number;
    className: string;
    message: string;
    stackTrace: StackTraceElement[];
    causeErrorCode: number;
    causeClassName: string;
    isRetryable(): boolean;
}
export = RemoteException;
