import { Lambda } from "../reducer/lambda/index.js"; import { compactTreeString } from "../utility/compactTreeString.js"; import { ImmutableMap } from "../utility/immutable.js"; import { Value } from "./index.js"; export type SimpleValueMap = ImmutableMap; export type SimpleValue = SimpleValue[] | SimpleValueMap | Lambda | boolean | Date | number | string | null; export type SimpleValueWithoutLambdaMap = ImmutableMap; export type SimpleValueWithoutLambda = SimpleValueWithoutLambda[] | SimpleValueWithoutLambdaMap | boolean | Date | number | string | null; export declare function removeLambdas(value: SimpleValue): SimpleValueWithoutLambda; export declare function simpleValueToJson(value: SimpleValueWithoutLambda): unknown; export declare function simpleValueFromAny(data: any): SimpleValue; export declare function simpleValueFromValue(value: Value): SimpleValue; export declare function simpleValueToValue(value: SimpleValue): Value; export declare const compactString: typeof compactTreeString; //# sourceMappingURL=simpleValue.d.ts.map