import { LibreRoutingDataResponse } from '../../providers';
declare const api: {
    createChunks(data: LibreRoutingDataResponse): void;
    recalculatePos({ bbox: { ne, sw }, popup }: {
        bbox: {
            ne: any;
            sw: any;
        };
        popup: any;
    }): {
        points: any;
        allInBbox: boolean;
    };
};
export declare type AnnotationWorkerApi = typeof api;
export {};
