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