import { ScadVariable } from './ScadVariable'; declare type ScadOperation = '+' | '-' | '*' | '/'; export declare type ScadStatement = `${number}${ScadOperation}${number}` | `${string}${ScadVariable}${string}`; export declare function isScadStatement(value: string | number): value is ScadStatement; export {};