/// import type { IPipeline } from '../../domain'; export interface IMapPair { key: string; value: string; error?: string; } export declare const MapPair: (props: { keyLabel: string; valueLabel: string; labelsLeft: boolean; pair: IMapPair; onChange: (pair: IMapPair) => void; onDelete: () => void; valueCanContainSpel?: boolean; pipeline?: IPipeline; }) => JSX.Element;