import { PhysicsProps as ProviderProps } from "@react-three/cannon"; import { ReactNode } from "react"; export type PhysicsProps = Partial; type PhysicsLayerProps = { children: ReactNode | ReactNode[]; } & PhysicsProps; export declare function Physics(props: PhysicsLayerProps): import("react").JSX.Element; export {};