import * as React from 'react'; import { IBoardStyle, IKeyCode } from '../../types'; interface IBit { key: string; bitIndex: number; rowIndex: number; bit: IKeyCode; leftOffset?: number; topOffset?: number; boardStyle?: IBoardStyle; } export declare const Bit: (props: IBit) => React.JSX.Element | null; export {};