import { LeanBaseEntity as LeanBaseEntity } from "./lean-base.entity"; export declare class LeanFieldModel extends LeanBaseEntity { id: number; code: string; prop: string; name: string; type: string; rank: number; bindLabel: string; bindKey: string; noNavigation: boolean; insertOnly: boolean; required: boolean; pipe: any; lov: any[]; width: number; flexGrow: number; format: string; unit: string; constructor(prop?: string, name?: string, type?: string, width?: number); }