import type { SerializedError } from '../types';
export declare class RemoteError extends Error {
    remoteError: SerializedError;
    constructor(message: string, remoteError: SerializedError);
}
