import { WhatToShow } from '@stoqey/ib';
import { MarketData } from '../interfaces';
import { GetHistoricalData } from '../utils/instrument.utils';
export declare const getHistoricalData: (opt: GetHistoricalData) => Promise<MarketData[]>;
export declare function getSecondsHistoricalDataFromIb(symbol: string | Object, dayDate: Date, whatToShow?: WhatToShow): Promise<MarketData[]>;
