import { RahaApiError } from "."; export declare const ERROR_CODE = "unauthorized"; export interface UnauthorizedErrorBody { errorCode: typeof ERROR_CODE; } /** * Authentication required to take the action requested via the API. */ export declare class UnauthorizedError extends RahaApiError { readonly errorCode: typeof ERROR_CODE; constructor(); } //# sourceMappingURL=UnauthorizedError.d.ts.map