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