import { ExtractPropTypes, PropType } from 'vue'; import type { DataTableCell, DataTableRow, DataTableRowBind, DataTableCellBind } from '../types'; export declare const useBindingProps: { rowBind: { type: PropType; }; cellBind: { type: PropType; }; }; export declare const useBinding: (props: ExtractPropTypes) => { getRowBind: (row: DataTableRow) => Record; getCellBind: (cell: DataTableCell, row: DataTableRow) => Record; };