import type { ActionFieldDef } from './types'; export interface DynamicLineItemsProps { field: ActionFieldDef; value: any[] | undefined; onChange: (rows: any[]) => void; disabled?: boolean; /** * Current values of the surrounding (header) form. Threaded into each cell * so a cell field with `dependsOn` can scope its options by a HEADER field * (e.g. `source_warehouse_id`), not just a sibling cell on the same row. */ formValues?: Record; /** * Localized validation messages keyed as `rowIndex.columnKey` (e.g. * `0.unit_price`). Painted as destructive borders + under-cell text. */ errors?: Record; } export declare function DynamicLineItems({ field, value, onChange, disabled, formValues, errors }: DynamicLineItemsProps): import("react").JSX.Element; //# sourceMappingURL=dynamic-line-items.d.ts.map