import { ReactNode, ReactElement } from 'react'; import * as api from '../../../../api'; interface Props { isWideLayout: boolean; postOnly: boolean; buyPrice: number | null; sellPrice: number | null; stopBuyPrice: number | null; stopSellPrice: number | null; id: string; buyNode?: ReactNode; sellNode?: ReactNode; tradingType: api.OrderType; } declare const TradingTab: ({ isWideLayout, postOnly, buyPrice, sellPrice, stopBuyPrice, stopSellPrice, id, buyNode, sellNode, tradingType, }: Props) => ReactElement; export default TradingTab; //# sourceMappingURL=index.d.ts.map