import type { FC } from 'react';
import type { PropsWithChildren } from 'react';
import type { CannonWorkerProps } from './cannon-worker-api';
export declare type ProviderProps = PropsWithChildren<CannonWorkerProps & {
    isPaused?: boolean;
    maxSubSteps?: number;
    shouldInvalidate?: boolean;
    stepSize?: number;
}>;
export declare const Provider: FC<ProviderProps>;
