import { Clock } from './Clock'; import { Display } from './Display'; import { Input } from './Input'; import { Jukebox } from './Jukebox'; declare class Core { /** * Main display surface */ readonly display: Display; /** * Audio engine */ readonly audio: Jukebox; /** * Input handler */ readonly input: Input; /** * Clock */ readonly clock: Clock; /** * Container for all the core modules of the engine */ constructor(container: HTMLElement); } export { Core };