import type { Scene } from '@antv/l7'; import type { ISyncSceneOptions } from './types'; /** * * @param scenes l7实例化的 scene 的数组 * @param options * @param options.zoomGap number 同步的缩放层级差距 * @param options.mainIndex number 主场景的数组索引,用于搭配 zoomGap * @returns Function 清除同步状态的监听函数。 */ export declare function syncScene(scenes: Scene[], options?: ISyncSceneOptions): () => void;