import React from 'react'; import { StyleProp, ViewStyle } from 'react-native'; declare type HighlightedSquareProps = { style?: StyleProp; }; export declare type HighlightedSquareRefType = { isHighlighted: () => boolean; reset: () => void; highlight: (_?: { backgroundColor?: string; }) => void; }; declare const HighlightedSquare: React.MemoExoticComponent>>; export { HighlightedSquare };