import { OnInit, EventEmitter, OnChanges } from '@angular/core'; import { RDDarkService } from './../dark.service'; export declare class RDDiceComponent implements OnInit, OnChanges { private darkService; diceSize: number; rollValue: EventEmitter; chosenValue: number; rolling: boolean; dark: boolean; constructor(darkService: RDDarkService); ngOnInit(): void; ngOnChanges(changes: any): void; rollDice(): void; resetChosenValue(): void; }