import { DataListTableDeclarativeColumn, DataListTableLayoutDefaults } from './configTypes'; import { ColumnDef, DataListTableProps } from './types'; export declare function mergeLayoutDefaults(defaults: DataListTableLayoutDefaults, props: DataListTableProps): DataListTableProps; /** * Combines declarative column metadata with header/cell renderers to produce * `ColumnDef[]` for `DataListTable`. */ export declare function mergeColumnDeclarativeWithRenderers(parts: Array & { header: ColumnDef["header"]; renderCell: ColumnDef["renderCell"]; renderHeader?: ColumnDef["renderHeader"]; }>): ColumnDef[];