import { Selection } from 'd3'; import { SvgCtrParams } from '../types'; import Margin from './margin'; export default class Svg { elementId: string; d3Svg: Selection; height: number; width: number; margin: Margin; transform: string; constructor(params?: SvgCtrParams); draw(): void; destroy(): void; }