import { LocationValue } from "./location-object-value"; export declare class MFOObjectValue { formObjectTitle: string; formObjectSubTitle: string; formObjectId: string; picture: string; location: Array<[LocationValue]>; } export declare class UxValueObject { message: string; backGroundColor: string; foreGroundColor: string; text: string; } export declare class VerificationWidgetValue { status: string; found: boolean; collectionId: string; name: string; path: string; uxValue: []; mfo: any[]; constructor(verificationObject?: VerificationWidgetValue); createNewVerificationValue(): void; /**function to create verification object with existing values * *@param verificationObject * */ createVerificationValue(verificationObject?: VerificationWidgetValue): void; }