export interface IEnumList { code: string; enumeration: IEnum[]; } export declare class IEnum { code: string; name: string; usableIndicator?: boolean; } export interface IExternalCode { code: string; name: string; }