import type { LitsFunction, RegularExpression } from './parser/types'; export type Arr = unknown[]; export type Seq = string | Arr; export type Obj = Record; export type Coll = Seq | Obj; export type Any = Coll | string | number | boolean | null | LitsFunction | RegularExpression; export type UnknownRecord = Record;