interface TableDataItem { id: number | string; [key: string]: any; } interface TableColumn { key: string; title: string; class?: string; } type __VLS_Props = { tableData: TableDataItem[]; selectedIds: (number | string)[]; columns: TableColumn[]; estimatedRowHeight: number; }; declare function __VLS_template(): { attrs: Partial<{}>; slots: Partial any>> & Partial any>>; refs: { virtualizerContainerRef: HTMLDivElement; }; rootEl: HTMLDivElement; }; type __VLS_TemplateResult = ReturnType; declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, { move: (...args: any[]) => void; "row:click": (...args: any[]) => void; }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{ onMove?: ((...args: any[]) => any) | undefined; "onRow:click"?: ((...args: any[]) => any) | undefined; }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, { virtualizerContainerRef: HTMLDivElement; }, HTMLDivElement>; declare const _default: __VLS_WithTemplateSlots; export default _default; type __VLS_WithTemplateSlots = T & { new (): { $slots: S; }; };