| 12345678 |
- import type { FunctionalComponent, Ref } from 'vue';
- import type { TableV2GridProps } from '../grid';
- import type { TableGridInstance } from '../table-grid';
- type LeftTableProps = TableV2GridProps & {
- leftTableRef: Ref<TableGridInstance | undefined>;
- };
- declare const LeftTable: FunctionalComponent<LeftTableProps>;
- export default LeftTable;
|