export default class Transpiler { constructor(decoder: { parse(source: string): U }, encoder: { emit(decoded: U): V }); parse(source: string): V; }