import type { BinaryOperation } from './binary-operation';
export interface Transformation {
    'name': string;
    'binary'?: BinaryOperation | null;
}
