export interface IRegion { child: number[]; code: string; name: string; center?: [number, number]; } export declare const DRILL_TYPE_LIST: string[]; export declare const RegionList: { [key: string]: IRegion; };