Spaces:
Sleeping
Sleeping
File size: 626 Bytes
645859a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
import * as React from 'react';
import * as THREE from 'three';
type Props = JSX.IntrinsicElements['group'] & {
multiple?: boolean;
box?: boolean;
border?: string;
backgroundColor?: string;
onChange?: (selected: THREE.Object3D[]) => void;
onChangePointerUp?: (selected: THREE.Object3D[]) => void;
filter?: (selected: THREE.Object3D[]) => THREE.Object3D[];
};
export declare function Select({ box, multiple, children, onChange, onChangePointerUp, border, backgroundColor, filter: customFilter, ...props }: Props): React.JSX.Element;
export declare function useSelect(): THREE.Object3D[];
export {};
|