import { APIOrder } from '@0x/connect'; import { OrderSet } from './order_set'; import { AddedRemovedOrders } from './types'; export declare class OrderStore { private readonly _orders; static getKeyForAssetPair(makerAssetData: string, takerAssetData: string): string; static assetPairKeyToAssets(assetPairKey: string): string[]; getOrderSetForAssetsAsync(makerAssetData: string, takerAssetData: string): Promise; getOrderSetForAssetPairAsync(assetPairKey: string): Promise; getBatchOrderSetsForAssetsAsync(makerAssetDatas: string[], takerAssetDatas: string[]): Promise; updateAsync(addedRemoved: AddedRemovedOrders): Promise; hasAsync(assetPairKey: string): Promise; valuesAsync(assetPairKey: string): Promise; keysAsync(): Promise>; } //# sourceMappingURL=order_store.d.ts.map