import { BufferGeometry } from 'three';
import { Vector3 } from './Vector3.js';
export declare class Vectors extends Array<Vector3> {
    static fromThreejsGeometry(geometry: BufferGeometry): Vectors;
    uniq(): Vectors;
}
