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