import { INodeDefinition, Node, ToInput, ToOutput } from '@tokens-studio/graph-engine'; import { IResolvedToken } from '../utils/index.js'; import type { SingleToken } from '@tokens-studio/types'; export default class ResolveNode extends Node { static title: string; static type: string; static description: string; inputs: ToInput<{ inputs: SingleToken[][]; context: SingleToken[][]; }>; outputs: ToOutput<{ value: IResolvedToken[]; }>; constructor(props: INodeDefinition); execute(): void | Promise; } //# sourceMappingURL=resolve.d.ts.map