import { Type } from '@angular/core'; import { Widget } from './widget'; import { ActionType } from '../common/widget-enums'; import { VerificationWidgetValue } from './widget-value/verification-widget-value'; declare type VerificationValue = Type>; export declare class Verification extends Widget { component: Type; widgetIcon: string; value: VerificationValue; collectedId: string; collectionType: string[]; collectionName: string; collectionNameSource: Array; savePhoto: boolean; subType: string; actionType: ActionType; selectField: string[]; matchFoundMessage: string; matchFoundColor: string; onImageCapture: string; noMatchFoundMessage: string; noMatchFoundColor: string; customFunction: string; showImage: boolean; field: string; generateMultipleObjects: string; allowGroupScan: boolean; customFunctionMsg: string; selectionField: 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; } export {};