import { ForeignBlacklistInterface } from './foreign-blacklist.interface'; import { CrossChainTradeType } from '../../providers/cross-chain-trade-type'; import { OnChainTradeType } from '../../providers/on-chain-trade-type'; export interface QuoteOptionsInterface { integratorAddress?: string; fromAddress?: string; slippage?: number; receiver?: string | undefined; nativeBlacklist?: (CrossChainTradeType | OnChainTradeType)[]; preferredProvider?: CrossChainTradeType | OnChainTradeType; foreignBlacklist?: ForeignBlacklistInterface; timeout?: number; enableTestnets?: boolean; enableChecks?: boolean; }