import { ConfigurationService } from '../../config/configuration.service';
import { ErrorService } from '../../error/error.service';
export declare class MahexService {
    private config;
    private error;
    private axios;
    private isSandbox;
    constructor(config: ConfigurationService, error: ErrorService);
    getPrice(street: string, cityCode: string, weights: number[]): Promise<any>;
    createOrder(street: string, cityCode: string, parcels: any, fistName: string, lastName: string, mobile: string): Promise<any>;
    getDetail(shipmentUuid: any): Promise<any>;
    getTrack(waybillNumber: any): Promise<any>;
}
