import { ParkingsLocationRepository } from "../../repositories/ParkingsLocationRepository";
import { ISimpleConfig } from "@golemio/core/dist/helpers/configuration/ISimpleConfig";
import { AbstractEmptyTask } from "@golemio/core/dist/integration-engine";
export declare class UpdateAllParkingsLocationAdresses extends AbstractEmptyTask {
    private config;
    private parkinglocationRepository;
    readonly queueName = "updateAllParkingsLocationAdresses";
    readonly queueTtl: number;
    constructor(config: ISimpleConfig, parkinglocationRepository: ParkingsLocationRepository);
    execute(): Promise<void>;
}
