import { Sentence } from './types.js'; import { Transformation } from './transformation.js'; export declare class DepEditEngine { transformations: Transformation[]; variables: Record; addVariable(key: string, val: string): void; loadIniString(ini: string): void; parseConllu(input: string): Sentence[]; serialize(sentences: Sentence[]): string; apply(sentence: Sentence): void; process(conllu: string): string; } //# sourceMappingURL=engine.d.ts.map