import { Fees, QuoteType } from './types'; export declare function _quoteMintExactInput(oracleValue: number, amountIn: number, fees: Fees, stablecoinsIssued: number, otherStablecoinSupply: number, stablecoinCap: number): number; export declare function _quoteMintExactOutput(oracleValue: number, amountOut: number, fees: Fees, stablecoinsIssued: number, otherStablecoinSupply: number, stablecoinCap: number): number; export declare function _quoteBurnExactOutput(oracleValue: number, ratio: number, amountOut: number, fees: Fees, stablecoinsIssued: number, otherStablecoinSupply: number): number; export declare function _quoteBurnExactInput(oracleValue: number, ratio: number, amountIn: number, fees: Fees, stablecoinsIssued: number, otherStablecoinSupply: number): number; export declare function _quoteFees(fees: Fees, quoteType: QuoteType, amountStable: number, stablecoinsIssued: number, otherStablecoinSupply: number): number; export declare function filterDictionaryOnly(obj: T): Partial;