import { INodeDefinition, Node, ToInput, ToOutput } from '@tokens-studio/graph-engine'; export default class CreateReferenceNode extends Node { static title: string; static type: string; static description: string; inputs: ToInput<{ segments: string[]; }>; outputs: ToOutput<{ reference: string; }>; constructor(props: INodeDefinition); execute(): void; } //# sourceMappingURL=createReference.d.ts.map