import type { ReactNode } from 'react'; import type { EditableCellFocusedType } from './typings'; export default function EditableCell(props: { focused: EditableCellFocusedType; children: ReactNode; bordered?: boolean; disableUpDown?: boolean; disableLeftRight?: boolean; errors?: string[]; noStyle?: boolean; onFocus: () => void; }): JSX.Element;