///
import { ProFormInstance } from '@fexd/pro-form';
export default function useEditableRow(): {
editableRowKeyRef: import("react").MutableRefObject>;
tableFormConfigRef: import("react").MutableRefObject;
isEditable: (rowKey: any) => boolean;
useEditable(rowKey: any): boolean;
setRowEditable: (rowKey: any, value: boolean) => void;
getForm: (rowKey: string) => ProFormInstance;
setFieldConfig: (rowKey: any, fieldKey: any, config: {
type: any;
name: any;
}) => void;
normalizeValues: (rowKey: any, values: any) => {
[k: string]: unknown;
};
};