import { IFUNNY_ERRORS, RESTAPIError } from "./error_base"; export interface RESTAPIErrorUnauthorized extends RESTAPIError { error: IFUNNY_ERRORS.UNAUTHORIZED; error_description: RESTAPIUnauthorizedMessage; status: 400; } export default RESTAPIErrorUnauthorized; export declare enum UNAUTHORIZED { GUESTS = "Requested operation is unavailable for guests" } declare type RESTAPIUnauthorizedMessage = `${UNAUTHORIZED}`; //# sourceMappingURL=unauthorized.d.ts.map