import { ObjectAbstract } from '../../../common/object-abstract'; import { ResultType, MinMaxType, Coord2DType, BasicInfoAtomType, TransformAtomType } from '../../../common/data-type'; import { WindowType, WindowEntityAtomType } from '../../../common/interface/window'; import { ObjectController } from '../../../common/object-controller'; declare class Poi extends ObjectController implements ObjectAbstract { className: string; private apiClassName; private WindowEntityAtom; constructor(opt?: WindowType); get url(): string; set url(url: string); get size(): MinMaxType; set size(size: MinMaxType); get offset(): Coord2DType; set offset(offset: Coord2DType); GetUrl(): Promise; SetUrl(url: string): Promise; GetSize(): Promise; SetSize(size: MinMaxType): Promise; GetOffset(): Promise; SetOffset(offset: Coord2DType): Promise; GetScheme(): { WindowEntityAtom: WindowEntityAtomType; }; GetData(): WindowType; SetData(opt: WindowType): void; generateAtomData(opt: WindowType): { WindowEntityAtom?: Partial; BasicInfoAtom?: Partial; TransformAtom?: Partial; }; } export default Poi;