import { OnInit, SimpleChanges, Renderer2, ElementRef, EventEmitter } from '@angular/core'; import { BaseComponent } from '../base-component'; import { Color } from '../../helpers/color.class'; export declare class SvPanelComponent extends BaseComponent implements OnInit { hue: Color; color: Color; editorParams: any; colorChange: EventEmitter; cursor: ElementRef; constructor(renderer: Renderer2, document: any, elementRef: ElementRef); readonly backgroundColor: string; onClick(event: any): void; ngOnInit(): void; ngOnChanges(changes: SimpleChanges): void; movePointer({ x, y, height, width }: { x: any; y: any; height: any; width: any; }): void; private changePointerPosition; }