import { Type } from '@angular/core'; import { Widget } from './widget'; import { DeviceProfilesTemp } from './widget-value/deviceProfilesTemp'; import { PropertyPanelFieldMetadata } from '../common/property-panel-field'; import { BarcodeComponent } from '../../../sculptor-lib/widgets/barcode/barcode.component'; export declare class BarCode extends Widget { component: Type; value: string; widgetIcon: string; barCodeSubType: string; textEditable: boolean; multiSelect: boolean; teChoices: string; scanQRCode: boolean; deviceProfilesTemp: Array; defaultDeviceProfileId: string; deviceProfiles: Array; captureLocation: boolean; defaultChoice: string; choices: string; constructor(field?: BarCode); /** * get widget value * * @returns */ getWidgetValue(): any; /** * Set widget Value * * @param value */ setWidgetValue(value: any): void; /** * this will return serialize of widget */ getWidgetSerializedValue(): string; newBarCode(): void; /** * function to create report object with existing values * *@param Report * */ barCode(field: any): void; /** * Create FormControl for widget */ createFormControl(): void; static getPropertyPanelFieldMetadata(target: any, key: string): PropertyPanelFieldMetadata; getPropertyPanelFieldUIProperties(): any; }