import { BoundingBox, Context, Element } from "../base"; export interface LineBreakStyle { /** * height of space to leave */ height: number; } /** * `LineBreak` is just vertical space between block elements. */ export declare class LineBreak implements Element { private style; /** * Create a new line break * @param style configuration for line break */ constructor(style: LineBreakStyle); width(_context: Context, box: BoundingBox): number; height(): number; draw(): void; }