/*! * Copyright (c) Microsoft. All rights reserved. * Licensed under the MIT license. See LICENSE file in the project. */ import { type Value, DataType } from '@datashaper/schema'; export declare function useHandleKeyChange(mapList: Record, onChange?: (mapping: Record) => void): (previousKey: Value, newKey: Value) => void; export declare function useHandleValueChange(mapList: Record, dataType?: DataType, onChange?: (mapping: Record) => void): (key: Value, newValue: Value) => void; export declare function useHandleDelete(mapList: Record, onChange?: (mapping: Record) => void): (key: Value) => void;