import { type Node } from 'ts-morph'; import { type StructureType } from './structure-type'; export type StructuredStatement = Node & { set(structure: Partial>): unknown; getStructure(): StructureType; };