import { LookupType } from "./lookup-type.model"; export declare class LookupCode { id: string; code: string; label: string; active: Date; inactive?: Date; status: string; locked: boolean; orderBy?: number; lookupType: LookupType; createdBy?: string; createdOn?: Date; modifiedBy?: string; modifiedOn?: Date; }