import { TableProps } from '../interfaces'; interface OnEditEndOptions { cancelled: boolean; refocusCell: boolean; } interface InlineEditorProps { ariaLabels: TableProps['ariaLabels']; column: TableProps.ColumnDefinition; item: ItemType; onEditEnd: (options: OnEditEndOptions) => void; submitEdit: TableProps.SubmitEditFunction; __onRender?: () => void; } export declare function InlineEditor({ ariaLabels, item, column, onEditEnd, submitEdit, __onRender }: InlineEditorProps): JSX.Element; export {};