import { OrderType, Token } from '../types'; type Props = { srcToken?: Token; dstToken?: Token; account?: string; orderType?: OrderType; createdAt?: number; deadline?: number; totalTrades?: number; tradeInterval?: number; srcAmount?: string; srcAmountUI?: string; srcAmountUsd?: string; dstAmount?: string; dstAmountUI?: string; dstAmountUsd?: string; limitPrice?: string; limitPriceUI?: string; limitPriceUsd?: string; srcAmountPerTrade?: string; srcAmountPerTradeUI?: string; srcAmountPerTradeUsd?: string; minDestAmountPerTrade?: string; minDestAmountPerTradeUI?: string; minDestAmountPerTradeUsd?: string; triggerPrice?: string; triggerPriceUI?: string; triggerPriceUsd?: string; }; export declare const useBuildOrderInfo: (props: Props) => { srcToken: Token | undefined; dstToken: Token | undefined; orderType: OrderType | undefined; createdAt: number; deadline: number; totalTrades: number; tradeInterval: number; recipient: string; srcAmount: string; srcAmountUI: string; srcAmountUsd: string; dstAmount: string; dstAmountUI: string; dstAmountUsd: string; limitPrice: string; limitPriceUI: string; limitPriceUsd: string; sizePerTrade: string; sizePerTradeUI: string; sizePerTradeUsd: string | undefined; minDestAmountPerTrade: string; minDestAmountPerTradeUI: string; minDestAmountPerTradeUsd: string | undefined; dstMinAmount: string; dstMinAmountUI: string; dstMinAmountUsd: string; triggerPrice: string; triggerPriceUI: string; triggerPriceUsd: string | undefined; }; export {}; //# sourceMappingURL=use-build-order-info.d.ts.map