/// import ViewController from './viewController'; import BranchViewController from './branchViewController'; import Sheet from '../model/sheet'; import ViewControllerType from '../common/constants/viewControllers'; import SheetView from '../view/sheetView'; export default class SheetViewController extends ViewController { private readonly _sheet; private readonly _view; private _centralBranchViewController; private _multiLineColors; private _bgColor; constructor(sheet: Sheet); init(): void; private _initStyle; get type(): ViewControllerType; get view(): SheetView; get model(): Sheet; get multiLineColors(): string; hasMultiLineColors(): boolean; get backgroundColor(): string; get centralBranchViewController(): BranchViewController; get content(): import("@svgdotjs/svg.js").G; getCanvas(): import("@svgdotjs/svg.js").Svg; transform(x: number, y: number): void; }