import { Type } from '@angular/core'; import { Widget } from './widget'; export declare class Payment extends Widget { createFormControl(): void; component: Type; value: string; payButtonText: string; checkButtonText: string; integrationId: string; defaultValue: string; integrationObjectId: string; constructor(field?: Widget); /** * get widget value * * @returns */ getWidgetValue(): any; /** * Set widget Value * * @param value */ setWidgetValue(value: any): void; /** * this will return serialize of widget */ getWidgetSerializedValue(): string; newPayment(): void; /**function to create video object with existing values * *@param field * */ payment(field: any): void; createValidators(): void; }