import { Body } from "matter-js";
import { GameObjectPhysicalObjectConfig } from "./GameObjectPhysicalObjectConfig";
import { Nullable } from "../types";
export declare const usePhysicalObjectFromConfig: <PhysicalObjectType extends Nullable<Body> = Body>({ position, ...physicalObjectConfig }: GameObjectPhysicalObjectConfig) => {
    physicalObject: PhysicalObjectType;
};
