import { Any } from "@ef-carbon/primitive"; import { IExtendedMutable as INodeExtendedMutable, IMutable as INodeMutable } from "../INode"; import { NodeGeneric } from "../Node"; import { Generic, List } from "./List"; export declare function isList(node: INodeMutable | Any): node is List; export declare function isList(node: INodeExtendedMutable | Any): node is Generic & IExtension; export declare function isList(node: NodeGeneric | Any): node is Generic; export default isList;