import type { ComponentInternalInstance, FunctionalComponent, UnwrapNestedRefs } from 'vue'; import type { UseNamespaceReturn } from 'element-plus/es/hooks'; import type { UseTableReturn } from '../use-table'; import type { TableV2Props } from '../table'; import type { TableGridRowSlotParams } from '../table-grid'; declare type RowRendererProps = TableGridRowSlotParams & Pick & UnwrapNestedRefs> & { ns: UseNamespaceReturn; tableInstance: null | ComponentInternalInstance; }; declare const RowRenderer: FunctionalComponent; export default RowRenderer;