import { INodeDefinition, Node, ToInput, ToOutput } from '@tokens-studio/graph-engine'; import type { TokenBoxshadowValue } from '@tokens-studio/types'; export default class CreateBoxShadowNode extends Node { static title: string; static type: string; static description: string; inputs: ToInput<{ x: string; y: string; blur: string; spread: string; color: string; type: string; }>; outputs: ToOutput<{ value: TokenBoxshadowValue; }>; constructor(props: INodeDefinition); execute(): void | Promise; } //# sourceMappingURL=createBoxShadow.d.ts.map