import { default as Vector3 } from '../math/Vector3.ts';
import { UrdfType, UrdfDefaultOptions } from './UrdfTypes.ts';
import { Nullable } from '../types/interface-types.ts';
/**
 * A Box element in a URDF.
 */
export default class UrdfBox {
    type: UrdfType;
    dimension: Nullable<Vector3>;
    constructor({ xml }: UrdfDefaultOptions);
}
