import { SpotifyError } from "../error";
export type AppRemoteErrorCode = "CONNECTION_FAILED" | "CONNECTION_LOST" | "NOT_CONNECTED" | "UNKNOWN";
export declare class AppRemoteError extends SpotifyError {
    readonly namespace: "AppRemote";
    readonly code: AppRemoteErrorCode;
    constructor(code: AppRemoteErrorCode, message: string);
}
//# sourceMappingURL=error.d.ts.map