import { ILayerToolDimensions, IMapForm, MapLayerToolForm } from "geovisto"; import IImageLayerTool from "../../types/tool/IImageLayerTool"; /** * This class provides functions for management of the layer sidebar tab. */ declare class ImageLayerToolMapForm extends MapLayerToolForm implements IMapForm { /** * It creates new map form with respect to the given props. * * @param tool */ constructor(tool: IImageLayerTool); /** * It updates selected input values according to the given dimensions. * * @param dimensions */ setInputValues(dimensions: ILayerToolDimensions): void; /** * It returns tab pane which will be placed in sidebar tab. */ getContent(): HTMLDivElement; } export default ImageLayerToolMapForm;