import { Stage } from './Stage';
import { World } from './World';
import { StageOptions } from './StageOptions';
export declare class Engine {
    private stage;
    private currentWorld;
    constructor(options: StageOptions);
    init(): void;
    getStage(): Stage;
    refresh(): void;
    switchWorld(newWorld: World): void;
}
