/// import { theme } from '@jrolfs/core'; import { Object3D } from 'three'; import { shapes } from './shapes'; export interface TetrisProps { type: keyof typeof shapes; color: theme.Color; thickness: number; roughness: number; clearcoat: number; clearcoatRoughness: number; transmission: number; ior: number; attenuationColor: string; attenuationDistance: number; } /** * Example of how to draw a `Shape` manually and then extrude it * * @see https://github.com/winkerVSbecks/storybook-blocks */ export declare const Tetris: import("react").ForwardRefExoticComponent>>;