import type { IGIAC } from '@antv/gi-sdk'; import * as React from 'react'; import './index.less'; export interface MapModeProps { GIAC: IGIAC; visible?: boolean; handleClick: () => any; theme: string; type: string; maxSize: string; minSize: string; placement: 'LT' | 'RT' | 'LB' | 'RB'; offset: number[]; latitudeKey: string; longitudeKey: string; setVisible: (visible: boolean) => void; } declare const L7Map: React.FunctionComponent; export default L7Map;