import type { FunctionalComponent, UnwrapNestedRefs } from 'vue'; import type { UseNamespaceReturn } from '@element-plus-next/vue-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; }; declare const RowRenderer: FunctionalComponent; export default RowRenderer;