import { Observable } from 'rxjs/Observable';
import { Moment } from 'moment';
import { ApiService } from '../api.service';
import { Country } from '../country/country.service';
export interface OrdersPerDay {
    count: number;
}
export declare class OrdersApiService {
    private api;
    host: string;
    constructor(api: ApiService);
    getOrdersPerDay(country: Country, dateFrom: Moment, dateTo: Moment): Observable<OrdersPerDay>;
}
