export type DistanceContextProps = {
    current: number;
};
/**
 * A context for providing an object's distance to the camera. This will allow child
 * components to use the `Distance` component.
 *
 * @see {@link Distance}
 *
 * @group Contexts
 */
export declare const DistanceContext: import('react').Context<DistanceContextProps>;
