import type { NativeExpoGaodeMapModule } from './types/native-module.types'; import { privacyMethods } from './module/privacy'; import { sdkMethods, getSDKConfig, getWebKey } from './module/sdk'; import { locationMethods } from './module/location'; import { geometryMethods } from './module/geometry'; export { getSDKConfig, getWebKey }; declare const helperMethods: typeof sdkMethods & typeof privacyMethods & typeof locationMethods & typeof geometryMethods; type HiddenNativeMethodName = 'setPrivacyShow' | 'setPrivacyAgree'; export type ExpoGaodeMapModule = Omit & typeof helperMethods; declare const ExpoGaodeMapModuleWithHelpers: ExpoGaodeMapModule; export default ExpoGaodeMapModuleWithHelpers; //# sourceMappingURL=ExpoGaodeMapModule.d.ts.map