import React from "react"; import type { ColumnEditType } from "../../../types"; export interface InlineEditCellProps { value: unknown; editType?: ColumnEditType; editOptions?: { value: string; label: string; }[]; onCommit: (value: unknown) => void; onCancel: () => void; } /** * Built-in inline editor rendered inside a table cell. * Supports text, number, date, and select types. */ export declare const InlineEditCell: React.FC;