import { TopLevelNode, Typed } from './index'; export declare class CodeBlock extends TopLevelNode { private readonly language; private content; constructor(language?: string | undefined); text(code: string): this; toJSON(): Typed; }