import { IDtoConverter } from "../interfaces";
import { IHistoricalInstrumentDto } from "../dtos";
import { IHistoricalInstrument } from "../models";
export declare class HistoricalInstrumentsDtoConverter implements IDtoConverter<IHistoricalInstrumentDto[], IHistoricalInstrument[]> {
    private _dateDtoConverter;
    convertFromDto(dto: IHistoricalInstrumentDto[]): IHistoricalInstrument[];
    convertToDto(model: IHistoricalInstrument[]): IHistoricalInstrumentDto[];
}
