export declare function assertMinBorrowingAmount({ formattedMinBorrowingAmt, borrowingAmt, }: { formattedMinBorrowingAmt: number; borrowingAmt: bigint; }): void; export declare function assertCR({ minCrPercentage, totalCollAmt, totalDebtAmt, collDecimals, collUsdPrice, }: { minCrPercentage: number; collUsdPrice: bigint; collDecimals: number; totalCollAmt: bigint; totalDebtAmt: bigint; }): void;