import { isly } from "isly"; type Value = string | number | boolean | Blob | undefined; export type Data = { [name: string]: Data | Data[] | Value | Value[]; }; export declare namespace Data { const valueType: isly.Type; const type: isly.Type; function set(data: Data, [head, ...tail]: string[], value: Value): Data; function deepen(data: Record): Data; function convertArrays(data: any): Data; function merge(data: Data, changes: Record): Data; function remove(data: Data, name: string): any; } export {};