import { PatchCommand } from './schema.js'; /** * Parse a DSL script into a list of commands. * * Syntax: * COMMAND key=value key2="string value" * * - Lines starting with # are comments * - Empty lines are ignored * - Keys and values are separated by = * - String values with spaces must be quoted */ export declare function parseDSL(script: string): PatchCommand[]; //# sourceMappingURL=parser.d.ts.map