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