/** * bounds should be [minLng, minLat, maxLng, maxLat] * @param {*} bounds */ export declare function validateBounds(bounds: any): any[]; export declare function getCenterAndZoomFromBounds(bounds: any, { width, height }: { width: any; height: any; }): { zoom: number; center: number[]; };