import React from 'react'; import type { State } from './StyledPinInput'; declare function PinCell({ value, secure, focused, state, }: { value: string; secure?: boolean; focused?: boolean; state?: State; }): React.JSX.Element; export default PinCell;