export declare const routeLayer: (id: any, sourceId: any) => {
    id: any;
    type: string;
    source: any;
    minzoom: number;
    maxzoom: number;
    layout: {
        'line-join': string;
        'line-cap': string;
        'line-sort-key': (string | number | (string | boolean | string[])[])[];
    };
    paint: {
        'line-color': (string | (string | boolean | string[])[])[];
        'line-width': number;
    };
};
export declare const waypointsLayer: (id: any, sourceId: any) => {
    id: any;
    source: any;
    type: string;
    layout: {
        visibility: string;
    };
    paint: {
        'circle-radius': number;
        'circle-color': string;
        'circle-stroke-width': number;
        'circle-stroke-color': string;
    };
};
