import { Type } from '@angular/core'; import { Widget } from './widget'; 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; barCodeSubType: string; helpText: string; textEditable: boolean; multiSelect: boolean; teChoices: string; scanQRCode: boolean; deviceProfilesTemp: String; defaultDeviceProfileId: string; deviceProfiles: Array; captureLocation: boolean; choices: string; hiChoices: string; marChoices: string; telChoices: string; frChoices: string; arChoices: string; JPChoices: string; IDChoices: string; THChoices: string; CNChoices: string; markup: string; name: 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; }