export declare class PickupResponse {
    private estimateDay;
    private estimateFrom;
    private estimateTo;
    private epochEstimateFrom;
    private epochEstimateTo;
    getEstimateDay: () => string;
    setEstimateDay: (value: string) => void;
    getEstimateFrom: () => string;
    setEstimateFrom: (value: string) => void;
    getEstimateTo: () => string;
    setEstimateTo: (value: string) => void;
    getEpochEstimateFrom: () => number;
    setEpochEstimateFrom: (value: number) => void;
    getEpochEstimateTo: () => number;
    setEpochEstimateTo: (value: number) => void;
}
