/**
 * Copyright (c) 2018-2023 mol* contributors, licensed under MIT, See LICENSE file for more info.
 *
 * @author David Sehnal <david.sehnal@gmail.com>
 * @author Alexander Rose <alexander.rose@weirdbyte.de>
 */
import { PositionData } from './common.js';
import { Box3D } from '../geometry/primitives/box3d.js';
import { Sphere3D } from '../geometry/primitives/sphere3d.js';
export type Boundary = {
    readonly box: Box3D;
    readonly sphere: Sphere3D;
};
export declare function getFastBoundary(data: PositionData): Boundary;
export declare function getBoundary(data: PositionData): Boundary;
