import { RahaApiError } from "../.."; export declare const ERROR_CODE = "mint.referral.usernameAlreadyExists"; export interface UsernameAlreadyExistsErrorBody { errorCode: typeof ERROR_CODE; username: string; } /** * Member tries to redeem referral bonus they have already redeemed */ export declare class UsernameAlreadyExistsError extends RahaApiError { readonly errorCode: typeof ERROR_CODE; constructor(username: string); } //# sourceMappingURL=UsernameAlreadyExistsError.d.ts.map