import { AllowedValueWithCode } from '../commonStateTypes/allowedValue'; export interface AllowedValueWithCodePayload { code: string; name: string; } export interface AllowedValueWithCodeOptionalPayload { code: string | null; name: string | null; } export declare function isAllowedValueWithCodePayload(allowedValueWithCodePayload: any): allowedValueWithCodePayload is AllowedValueWithCodePayload; export declare function isAllowedValueWithCodeOptionalPayload(allowedValueWithCodePayload: any): allowedValueWithCodePayload is AllowedValueWithCodeOptionalPayload; export declare function toAllowedValueWithCode(allowedValueWithCodePayload: AllowedValueWithCodePayload): AllowedValueWithCode; export interface LabelValueCodesPayload { label: string; values: { code: string; description: string; }[] | string[]; }