import { SpwItemKind } from "./ast/types/kind"; import { ISpwItemStatic, SpwItem } from "./ast/abstract/item"; declare type SpwItemConstructorObj = { [K in SpwItemKind]: typeof SpwItem & ISpwItemStatic; }; export declare const spwItemConstructors: SpwItemConstructorObj; export { SpwItemKind } from "./ast/types/kind"; export declare type SpwNodeConstructors = typeof spwItemConstructors;