import React, { PropsWithChildren } from "react";
import { MatterPhysicsConfig, MatterPhysics } from "./types";
export type MatterPhysicsContextProviderOptions = {
    isRunning?: boolean;
    config: MatterPhysicsConfig;
};
export declare const MatterPhysicsContext: React.Context<MatterPhysics>;
export declare const MatterPhysicsContextProvider: React.FC<PropsWithChildren & MatterPhysicsContextProviderOptions>;
