import { OnInit, EventEmitter } from '@angular/core'; import { RDDarkService } from '../../dark.service'; export declare class RDPanelComponent implements OnInit { private darkService; color: string; stateChange: EventEmitter; textContainer: any; textContent: any; open: boolean; dark: boolean; constructor(darkService: RDDarkService); ngOnInit(): void; changeState(): void; changeTextContainerSize(): void; }