import { FunctionalComponent } from '../../stencil-public-runtime'; import { PuzzleCell } from '../../utils'; interface CellProps { cell: PuzzleCell; focus: boolean; selected: boolean; solved: boolean; } declare const Cell: FunctionalComponent; export { Cell }; export default Cell;