import { Type } from '@angular/core'; import { Widget } from './widget'; declare type AutuNumberValue = Type; export declare class AutoNumber extends Widget { component?: Type; value: AutuNumberValue; widgetIcon: string; prefix: string; postfix: string; length: string; selectedType: string; templateContent: string; getWidgetValue(): any; setWidgetValue(value: any): void; constructor(field?: AutoNumber); newAutoNumber(): void; /**function to create report object with existing values * *@param field * */ autoNumber(field: any): void; /** * this will return serialize of widget */ getWidgetSerializedValue(): string; } export {};