import type { FieldsSource } from '@wix/bex-core'; import type { EditableColumn } from './EditableTable/types'; /** * Projects a FieldsSource's fields into EditableTable columns: a cell type by * field type, value read/write through the source, validation from the field, * and the flags the header reads for its disable rules. A cell is editable only * when the source can write it back (setCellValue) and the field isn't a system * field. */ export declare function buildEditableFieldColumns(source: FieldsSource): EditableColumn>[]; //# sourceMappingURL=buildEditableFieldColumns.d.ts.map