import { BufferGeometry } from 'three';
import { InstanceAttrib } from '../../Instancer';
import { Attribute } from '../../Attribute';
import { ThreejsPoint } from './ThreejsPoint';
import { Object3DWithGeometry } from '../../Group';
export declare function positionAttributeNameFromBufferGeometry(geometry: BufferGeometry): Attribute.POSITION | InstanceAttrib.POSITION;
export declare function pointsCountFromBufferGeometry(geometry: BufferGeometry): number;
export declare function pointsFromThreejsObject(object: Object3DWithGeometry): ThreejsPoint[];
