import { KindNode } from "../ast/types.js"; import { Type } from "../types/Type.js"; import { Node } from "./Node.js"; type Rank = "top" | "import" | "parameter" | "local"; export declare class NodeIdentifierDefinition extends Node<"IdentifierDefinition"> { value: string; type: Type; private constructor(); children(): never[]; static fromAst(node: KindNode<"Identifier">, type: Type): NodeIdentifierDefinition; get rank(): Rank; } export {}; //# sourceMappingURL=NodeIdentifierDefinition.d.ts.map