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