import * as frontend from 'llparse-frontend'; import { Compilation } from '../compilation'; export declare abstract class Code { readonly ref: T; protected cachedDecl: string | undefined; constructor(ref: T); abstract build(ctx: Compilation, out: string[]): void; }