/** * Runs the callback once every "step" event * * note: this is shorthand for useGameEvent("step", callback) */ export declare function useGameLoop(onLoop: ({ delta, time }: { delta: number; time: number; }) => any): void;