import * as React from 'react'; import { SquareValue, NonogramActions } from '../utils/types'; interface NonogramGridProps { rows: number; cols: number; solution: (boolean | 'filled' | 'empty')[]; init?: SquareValue[]; onRefresh?: (nonogramActions: NonogramActions) => void; } declare function RecoilNonogramGrid({ rows, cols, solution, init, onRefresh }: NonogramGridProps): JSX.Element; export declare const NonogramGrid: React.MemoExoticComponent; export {};