import { DLOBOrdersCoder } from './DLOBOrders'; import { DLOB } from './DLOB'; type DLOBApiClientConfig = { url: string; }; export declare class DLOBApiClient { url: string; dlobCoder: DLOBOrdersCoder; lastSeenDLOB: DLOB; lastSeenSlot: number; constructor(config: DLOBApiClientConfig); getDLOB(slot: number): Promise; } export {};