import { DataValueType } from "./type/DataValueType";
export interface DataItem {
    key: string;
    value: DataValueType;
}
