import Big from "big.js"; import { RahaApiError } from "../.."; export declare const ERROR_CODE = "mint.amountTooLarge"; export interface MintAmountTooLargeErrorBody { errorCode: typeof ERROR_CODE; } /** * Member attempts to mint more Raha than they can. */ export declare class MintAmountTooLargeError extends RahaApiError { readonly errorCode: typeof ERROR_CODE; constructor(amount: Big, allowedAmount: Big); } //# sourceMappingURL=MintAmountTooLargeError.d.ts.map