import { ControlData } from "../Controls/Control.types"; import { DivineControlEvent } from "../Events/DivineControlEventBase"; import { DCControl } from "../Controls/DCControl"; export declare class DCUser { id: number; _events: Map>; _controlsMapped: Map; _controls: Map; constructor(id: number); getControlById(id: string): void; getControlByType(id: string): DCControl | undefined; clearControls(): void; registerControl(controlData: ControlData): void; }