import { Type } from '@angular/core'; import { Widget } from './widget'; import { RecordLimitType, RestrictionMode } from '../common/widget-enums'; import { ChildRecordValue } from './widget-value/child-record-value'; import { ChildRecordComponent } from '../../../sculptor-lib/widgets/child-record/child-record.component'; import { PropertyPanelFieldMetadata } from '../common/property-panel-field'; export declare class ChildRecord extends Widget { component?: Type; value: Array; childFormId: number; isShowInlineList: boolean; recordLimitType: RecordLimitType; deleteSpecificRecord: string; showInlineList: boolean; childShowInline: string; recordLimitField: string; restrictionMode: RestrictionMode; recordLimit: number; widgetIcon: 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; newChildRecord(): void; /**function to create report object with existing values * *@param Report * */ childRecord(field: any): void; /** * Create FormControl for widget */ createFormControl(): void; static getPropertyPanelFieldMetadata(target: any, key: string): PropertyPanelFieldMetadata; getPropertyPanelFieldUIProperties(): any; }