import { INodeDefinition, Node, ToInput, ToOutput } from '@tokens-studio/graph-engine'; import type { SingleToken, TokenBoxshadowValue } from '@tokens-studio/types'; export default class NodeDefinition extends Node { static title: string; static type: string; static description: string; outputs: ToOutput<{ token: SingleToken; }>; inputs: ToInput<{ name: string; reference: string; value: TokenBoxshadowValue[]; description?: string; $extensions?: Record; }>; constructor(props: INodeDefinition); execute(): void | Promise; } //# sourceMappingURL=createBoxShadowToken.d.ts.map