import { AnyWorld, World } from "@chantey/ecs"; import { Sketch } from "./types"; interface Args { } export declare const createPlaySystem: ({}?: Args) => { onStart: import("@chantey/core").iEvent; onUpdate: import("@chantey/core").iEvent; onStop: import("@chantey/core").iEvent; world: () => T; runSketch: (sketch: Sketch, canvas?: HTMLCanvasElement, video?: HTMLVideoElement) => Promise>; stopSketch: () => void; }; export declare type PlaySystem = ReturnType; export {};