export interface AllowedValueWithCode { code: string; name: string; } export interface AllowedValueWithID { id: string; name: string; } export type AllowedValue = AllowedValueWithCode | AllowedValueWithID; export declare function isAllowedValueWithCode(allowedValue: AllowedValue): allowedValue is AllowedValueWithCode; export declare function isAllowedValueWithID(allowedValue: AllowedValue): allowedValue is AllowedValueWithID;