import { Type } from '@angular/core'; import { Widget } from './widget'; import { ApplyGeoFenceWidgetValue } from './widget-value/apply-geo-fence-widget-value'; declare type ApplyGeoFenceValue = Type; export declare class ApplyGeoFence extends Widget { whichObject: string; value: ApplyGeoFenceValue; component: Type; widgetIcon: string; constructor(field?: Widget); newGeoFence(): void; /**function to create link object with existing values * *@param field * */ geoFence(field: any): void; getWidgetValue(): ApplyGeoFenceValue; setWidgetValue(value: any): void; /** * this will return serialize of widget */ getWidgetSerializedValue(): string; } export {};