/*! * Copyright (c) Microsoft. All rights reserved. * Licensed under the MIT license. See LICENSE file in the project. */ import { type Value, DataType } from '@datashaper/schema'; import type { IStyleFunctionOrObject, ITextFieldStyleProps, ITextFieldStyles } from '@fluentui/react'; export declare function useMappingPairs(mapping: Record, dataType: DataType, onKeyChange: (oldKey: Value, newKey: Value) => void, onValueChange: (key: Value, newValue: Value) => void, onDelete: (key: Value) => void, dropdownStyles?: IStyleFunctionOrObject, disabled?: boolean): JSX.Element[];