export declare type FieldModelType = 'input' | 'radio' | 'checkbox' | 'select' | 'datepicker' | 'badge' | 'button' | 'text' | 'image' | 'action-text' | 'linear-loader' | any; export interface FieldModel { type: FieldModelType; data: any; }