import { Type } from '@angular/core'; import { Widget } from './widget'; import { ActionType } from '../common/widget-enums'; import { VerificationWidgetValue } from './widget-value/verification-widget-value'; import { VerificationComponent } from '../../../sculptor-lib/widgets/verification/verification.component'; import { PropertyPanelFieldMetadata } from '../common/property-panel-field'; declare type VerificationValue = Type>; export declare class Verification extends Widget { component: Type; value: VerificationValue; helpText: string; collectedId: string; collectionType: string; collectionName: string; savePhoto: boolean; subType: string; actionType: ActionType; selectField: string[]; matchFoundMessage: string; matchFoundColor: string; onImageCapture: string; noMatchFoundMessage: string; noMatchFoundColor: string; showImage: boolean; changedField: string; generateMultipleObjects: string; allowGroupScan: boolean; customFunctionMsg: string; selectionField: string; name: string; markup: string; constructor(field?: Widget); /** * get widget value * * @returns */ getWidgetValue(): any; /** * Set widget Value * * @param value */ setWidgetValue(value: any): void; newVerification(): void; /**function to create video object with existing values * *@param field * */ verification(field: any): void; /** * this will return serialize of widget */ getWidgetSerializedValue(): string; static getPropertyPanelFieldMetadata(target: any, key: string): PropertyPanelFieldMetadata; getPropertyPanelFieldUIProperties(): any; } export {};