import { Source } from './../../utils/types'; export declare class Baseboard { id: string; isFullscreen: boolean; source: Source; target: HTMLImageElement; targetRect: ClientRect; boardCanvas: SVGSVGElement; boardHolder: HTMLDivElement; defs: SVGDefsElement; width: number; height: number; constructor(source: Source); protected initBoard: (mountContainer: HTMLElement) => void; protected positionBoard: () => void; }