import { BaseDrawer } from '../drawer/BaseDrawer'; import { DrawingBox } from './GraphicBox'; import { IDrawableGraphic } from './interfaces'; export declare const TITLE_PADDING = 5; export declare const TITLE_MARGIN = 0; export declare class TitleGraphic implements IDrawableGraphic { box: DrawingBox; message: string; draw(drawer: BaseDrawer): void; }