import type { FunctionalComponent, UnwrapNestedRefs } from 'vue'; import type { TableV2RowCellRenderParam } from '../components'; import type { UseNamespaceReturn } from 'element-plus/es/hooks'; import type { UseTableReturn } from '../use-table'; import type { TableV2Props } from '../table'; declare type CellRendererProps = TableV2RowCellRenderParam & Pick & UnwrapNestedRefs> & { ns: UseNamespaceReturn; }; declare const CellRenderer: FunctionalComponent; export default CellRenderer;