/// import { FlexTable } from '../..'; /** * A bound column represents a table column which can 'bind' to a property of the items * in its parent table. It will then populate its cells with the the data from that property * binding, and can also be given a header to match. * * You can specify the property to match on via a function (item => item.propertyToBind) * * @param {any} { item, binding, formatter, children, cellClassName, hideHeader, ...attrs } * @returns */ export declare const BoundColumn: ({ binding, formatter, ...attrs }: FlexTable.BoundColumnProps) => JSX.Element; //# sourceMappingURL=bound-column.d.ts.map