import type { MachineDef } from "../core/dsl.js"; export interface LintViolation { file: string; line: number; column: number; message: string; } export declare const lintNoRawMachineWrites: (tsconfigPath: string, machine: MachineDef) => readonly LintViolation[];