import * as frontend from 'llparse-frontend'; import { Compilation } from '../compilation'; export abstract class Transform { constructor(public readonly ref: T) { } public abstract build(ctx: Compilation, value: string): string; }