305574e265f78d643bfd0ddea3215efc8ebc82a4ddf464f802224e7195dd74b4f26830ae77c7a32a252e6be36efcdef34aeb9beb863dbf3ebb35965fcd059c 351 B

12345678
  1. import type { FunctionalComponent, Ref } from 'vue';
  2. import type { TableV2GridProps } from '../grid';
  3. import type { TableGridInstance } from '../table-grid';
  4. type RightTableProps = TableV2GridProps & {
  5. rightTableRef: Ref<TableGridInstance | undefined>;
  6. };
  7. declare const RightTable: FunctionalComponent<RightTableProps>;
  8. export default RightTable;