export declare const isString: (value: unknown) => value is string; export declare const isPlainObject: (value: unknown) => value is object; export declare function flattenTree(root: T, children: (node: T) => Iterable, predicate?: (node: T) => boolean): Set; export declare function concatIterables(...iterables: Iterable[]): Iterable; //# sourceMappingURL=language-helpers.d.ts.map