interface AppResult { code: number; data: string; } interface openAMapParams { points: Array } interface amapPointSelection { callback: any } export function getProxyUrl(): AppResult; export function openAMap(params: openAMapParams): any export function amapPointSelection(params: amapPointSelection): any