import React from 'react'; import type { FiltersMap } from '@wix/bex-core'; import type { EditableTableState } from '../../state/EditableTable'; export interface EditableCellProps { state: EditableTableState; rowKey: string; columnId: string; } declare function _EditableCell({ state, rowKey, columnId, }: EditableCellProps): React.JSX.Element | null; export declare const EditableCell: typeof _EditableCell & { displayName: string; }; export {}; //# sourceMappingURL=EditableCell.d.ts.map