import * as React from 'react'; import { PlaneBufferGeometry } from 'three'; import { ShapeProps } from './shapes'; export declare type BillboardProps = { follow?: boolean; lockX?: boolean; lockY?: boolean; lockZ?: boolean; } & ShapeProps; export declare const Billboard: React.ForwardRefExoticComponent & React.RefAttributes>;