import { SpotifyError } from "../error";
export type UserErrorCode = "NOT_CONNECTED" | "CONNECTION_LOST" | "INVALID_URI" | "OPERATION_NOT_ALLOWED" | "UNKNOWN";
export declare class UserError extends SpotifyError {
    readonly namespace: "User";
    readonly code: UserErrorCode;
    constructor(code: UserErrorCode, message: string);
}
//# sourceMappingURL=error.d.ts.map