import { IEngineCallback } from "matter-js";
type UsePhysicsEngineEventHandlerOptions = {
    isEnabled?: boolean;
    event: "beforeUpdate" | "afterUpdate";
    callback: IEngineCallback;
};
export declare const usePhysicsEngineEventHandler: ({ isEnabled, event, callback }: UsePhysicsEngineEventHandlerOptions) => void;
export {};
