import { Expression, Statement, UUID } from '..'; export declare type BranchStatement = { type: 'branch'; data: { id: UUID; condition: Expression; block: Statement[]; }; };