/** * One row of the adapter mapping form: it picks ONE of three value sources for a * declared input key — a picked field (from the run's output / input schema), a * hardcoded literal, or a jq expression — and shows the row's own compiled jq on * demand. {@link AdapterMapping} composes one editor per declared key. */ import { type ReactNode } from 'react'; import { type MappingRow } from './adapter'; import { type TemplateJqSuggestion } from './BindingJqField'; import type { BindingSourceSchemas } from './types'; export declare function MappingRowEditor({ row, onChange, sources, suggestions, }: { readonly row: MappingRow; readonly onChange: (row: MappingRow) => void; readonly sources?: BindingSourceSchemas; readonly suggestions?: readonly TemplateJqSuggestion[]; }): ReactNode; //# sourceMappingURL=adapter-mapping-row.d.ts.map