import { Printable, Printer } from './printer'; export declare class Block { private bodyParts; private constructor(); parts(): { parts: (string | Printable)[]; }; add(part: string | Printable): this; static create(): Block; print(printer: Printer): string; }