import { Position, CoordinateSystem, IMapInitOptions } from '@tuoyuan/map-adapter-lib';
import { AMap } from '@tuoyuan/map-adapter-amap';
export interface IImgMapInitOptions {
    /** 图片地址 */
    url: string;
    /** 图片范围 */
    bounds: [ConstructorParameters<typeof Position>, ConstructorParameters<typeof Position>];
    /** 背景颜色 */
    background?: string;
}
export declare class ImgMap extends AMap {
    coordinateSystem: CoordinateSystem;
    constructor();
    init(options: IMapInitOptions, selfOptions?: any): Promise<any>;
}
