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