export { Text } from "./text"; export { Counter } from "./counter"; export { Int, Uint, Float64 } from "./numbers"; import { Counter } from "./counter"; export declare type AutomergeValue = ScalarValue | { [key: string]: AutomergeValue; } | Array; export declare type MapValue = { [key: string]: AutomergeValue; }; export declare type ListValue = Array; export declare type TextValue = Array; export declare type ScalarValue = string | number | null | boolean | Date | Counter | Uint8Array;