import { ShapeAttributes } from '@ui/lib/types/shapes/shape'; export const transformSceneNode = (node: SceneNodeMixin): Partial => { return { blocked: node.locked, hidden: false // @TODO: check this. it won't export if we hide it }; };