export interface CodeItem { value: string; content: string; } export type CodeData = CodeItem[]; export type CodeMap = Record; export type CascadeCodeItem = { value: string; content: string; parent?: string; };