import { PropType } from '@vue/composition-api'; import { ComponentScrollToElementParams, Styles } from '../common'; import { BaseTableCol, TableRowData } from './type'; export declare const BASE_TABLE_EVENTS: string[]; export declare const BASE_TABLE_ALL_EVENTS: string[]; export interface TableListeners { [key: string]: Function; } declare const _default: import("vue").ComponentOptions; translateY: import("@vue/composition-api").Ref; scrollHeight: import("@vue/composition-api").Ref; isVirtualScroll: import("@vue/composition-api").ComputedRef; handleScroll: () => void; handleRowMounted: (rowData: any) => void; scrollToElement: (p: import("../hooks").ScrollToElementParams) => void; }; scrollToElement: (params: ComponentScrollToElementParams) => void; columnResizable: import("@vue/composition-api").ComputedRef; thList: import("@vue/composition-api").ComputedRef[][]>; classPrefix: string; innerPagination: import("@vue/composition-api").Ref; global: import("@vue/composition-api").ComputedRef<{} & import("..").TableConfig>; tableFootHeight: import("@vue/composition-api").Ref; tableWidth: import("@vue/composition-api").Ref; tableElmWidth: import("@vue/composition-api").Ref; tableRef: import("@vue/composition-api").Ref; tableElmRef: import("@vue/composition-api").Ref; sizeClassNames: { small: string; medium: string; large: string; default: string; xs: string; xl: string; block: string; }; tableBaseClass: { table: (string | { [x: string]: boolean; })[]; columnResizableTable: string; overflowVisible: string; body: string; content: string; topContent: string; bottomContent: string; paginationWrap: string; tdLastRow: string; tdFirstCol: string; thCellInner: string; tableRowEdit: string; cellEditable: string; cellEditWrap: string; bordered: string; striped: string; hover: string; loading: string; rowspanAndColspan: string; empty: string; emptyRow: string; headerFixed: string; columnFixed: string; widthOverflow: string; multipleHeader: string; footerAffixed: string; horizontalBarAffixed: string; affixedHeader: string; affixedHeaderElm: string; affixedFooterElm: string; affixedFooterWrap: string; scrollbarDivider: string; fullHeight: string; resizeLine: string; obviousScrollbar: string; affixedHeaderWrap: string; }; spansAndLeafNodes: import("@vue/composition-api").ComputedRef<{ rowspanAndColspanMap: import("./interface").ThRowspanAndColspan; leafColumns: BaseTableCol[]; }>; dynamicBaseTableClasses: import("@vue/composition-api").ComputedRef; tableContentStyles: import("@vue/composition-api").ComputedRef; tableElementStyles: import("@vue/composition-api").ComputedRef; virtualScrollClasses: { cursor: string; header: string; }; tableLayoutClasses: { auto: string; fixed: string; }; tableElmClasses: import("@vue/composition-api").ComputedRef; dividerBottom: import("@vue/composition-api").ComputedRef; tableContentRef: import("@vue/composition-api").Ref; isFixedHeader: import("@vue/composition-api").Ref; isWidthOverflow: import("@vue/composition-api").Ref; isFixedColumn: import("@vue/composition-api").Ref; rowAndColFixedPosition: import("@vue/composition-api").Ref; showColumnShadow: { left: boolean; right: boolean; }; thWidthList: import("@vue/composition-api").Ref<{ [x: string]: number; }>; isPaginateData: import("@vue/composition-api").ComputedRef; dataSource: import("@vue/composition-api").Ref<{ [x: string]: any; children?: any[]; }[]>; affixHeaderRef: import("@vue/composition-api").Ref; affixFooterRef: import("@vue/composition-api").Ref; paginationRef: import("@vue/composition-api").Ref; bottomContentRef: import("@vue/composition-api").Ref; showAffixHeader: import("@vue/composition-api").Ref; showAffixFooter: import("@vue/composition-api").Ref; scrollbarWidth: import("@vue/composition-api").Ref; isMultipleHeader: import("@vue/composition-api").ComputedRef; showRightDivider: import("@vue/composition-api").ComputedRef; resizeLineRef: import("@vue/composition-api").Ref; resizeLineStyle: { display: string; height: string; left: string; bottom: string; }; columnResizeParams: { resizeLineRef: import("@vue/composition-api").Ref; resizeLineStyle: { display: string; height: string; left: string; bottom: string; }; onColumnMouseover: (e: MouseEvent, col: BaseTableCol) => void; onColumnMousedown: (e: MouseEvent, col: BaseTableCol, index: number) => void; setEffectColMap: (nodes: BaseTableCol[], parent: BaseTableCol) => void; }; horizontalScrollbarRef: import("@vue/composition-api").Ref; tableBodyRef: import("@vue/composition-api").Ref; showAffixPagination: import("@vue/composition-api").Ref; showElement: import("@vue/composition-api").Ref; getListener: () => TableListeners; renderPagination: (h: import("vue").CreateElement) => JSX.Element; onFixedChange: () => void; onHorizontalScroll: (scrollElement?: HTMLElement) => void; updateAffixHeaderOrFooter: () => void; refreshTable: () => void; onInnerVirtualScroll: (e: WheelEvent) => void; scrollColumnIntoView: (colKey: string) => void; paginationAffixRef: import("@vue/composition-api").Ref; horizontalScrollAffixRef: import("@vue/composition-api").Ref; headerTopAffixRef: import("@vue/composition-api").Ref; footerBottomAffixRef: import("@vue/composition-api").Ref; isIE: import("@vue/composition-api").ComputedRef; }> & import("@vue/composition-api").Data, { renderColGroup(columns: BaseTableCol[], isAffixHeader?: boolean): JSX.Element; getHeadProps(isAffixHeader?: boolean): { isFixedHeader: boolean; showColumnShadow: { left: boolean; right: boolean; }; thDraggable: boolean; rowAndColFixedPosition: import("./interface").RowAndColFixedPosition; isMultipleHeader: boolean; bordered: boolean; maxHeight: string | number; height: string | number; spansAndLeafNodes: { rowspanAndColspanMap: import("./interface").ThRowspanAndColspan; leafColumns: BaseTableCol[]; }; thList: BaseTableCol[][]; thWidthList: { [x: string]: number; }; resizable: boolean; columnResizeParams: { resizeLineRef: import("@vue/composition-api").Ref; resizeLineStyle: { display: string; height: string; left: string; bottom: string; }; onColumnMouseover: (e: MouseEvent, col: BaseTableCol) => void; onColumnMousedown: (e: MouseEvent, col: BaseTableCol, index: number) => void; setEffectColMap: (nodes: BaseTableCol[], parent: BaseTableCol) => void; }; classPrefix: string; ellipsisOverlayClassName: string; attach: import("../common").AttachNode; }; renderFixedHeader(columns: BaseTableCol[]): JSX.Element; renderAffixedFooter(columns: BaseTableCol[]): JSX.Element; renderAffixedHeader(columns: BaseTableCol[]): JSX.Element; }, {}, { renderExpandedRow: PropType<(h: import("vue").CreateElement, params: import("./type").TableExpandedRowParams) => JSX.Element>; onLeafColumnsChange: PropType<(columns: BaseTableCol[]) => void>; thDraggable: BooleanConstructor; activeRowKeys: { type: import("vue").PropType<(string | number)[]>; default: any; }; defaultActiveRowKeys: { type: import("vue").PropType<(string | number)[]>; default: () => (string | number)[]; }; activeRowType: { type: import("vue").PropType<"multiple" | "single">; default: string; }; allowResizeColumnWidth: { type: BooleanConstructor; default: any; }; attach: { type: import("vue").PropType; }; bordered: BooleanConstructor; bottomContent: { type: import("vue").PropType import("vue/types/vnode").ScopedSlotReturnValue)>; }; cellEmptyContent: { type: import("vue").PropType) => import("vue/types/vnode").ScopedSlotReturnValue)>; }; columns: { type: import("vue").PropType[]>; default: () => BaseTableCol[]; }; data: { type: import("vue").PropType; default: () => TableRowData[]; }; disableDataPage: BooleanConstructor; disableSpaceInactiveRow: { type: BooleanConstructor; default: any; }; empty: { type: import("vue").PropType import("vue/types/vnode").ScopedSlotReturnValue)>; default: string; }; firstFullRow: { type: import("vue").PropType import("vue/types/vnode").ScopedSlotReturnValue)>; }; fixedRows: { type: import("vue").PropType; }; footData: { type: import("vue").PropType; default: () => TableRowData[]; }; footerAffixProps: { type: import("vue").PropType>; }; footerAffixedBottom: { type: import("vue").PropType>; default: boolean; }; footerSummary: { type: import("vue").PropType import("vue/types/vnode").ScopedSlotReturnValue)>; }; headerAffixProps: { type: import("vue").PropType>; }; headerAffixedTop: { type: import("vue").PropType>; default: boolean; }; height: { type: import("vue").PropType; }; horizontalScrollAffixedBottom: { type: import("vue").PropType>; }; hover: BooleanConstructor; keyboardRowHover: { type: BooleanConstructor; default: boolean; }; lastFullRow: { type: import("vue").PropType import("vue/types/vnode").ScopedSlotReturnValue)>; }; lazyLoad: BooleanConstructor; loading: { type: import("vue").PropType import("vue/types/vnode").ScopedSlotReturnValue)>; default: any; }; loadingProps: { type: import("vue").PropType>; }; locale: { type: import("vue").PropType; }; maxHeight: { type: import("vue").PropType; }; pagination: { type: import("vue").PropType; }; paginationAffixedBottom: { type: import("vue").PropType>; }; resizable: BooleanConstructor; rowAttributes: { type: import("vue").PropType>; }; rowClassName: { type: import("vue").PropType) => import("../common").ClassName)>; }; rowKey: { type: StringConstructor; default: string; required: boolean; }; rowspanAndColspan: { type: import("vue").PropType>; }; rowspanAndColspanInFooter: { type: import("vue").PropType>; }; scroll: { type: import("vue").PropType; }; showHeader: { type: BooleanConstructor; default: boolean; }; size: { type: import("vue").PropType; default: import("../common").SizeEnum; validator(val: import("../common").SizeEnum): boolean; }; stripe: BooleanConstructor; tableContentWidth: { type: StringConstructor; default: string; }; tableLayout: { type: import("vue").PropType<"fixed" | "auto">; default: "fixed" | "auto"; validator(val: "fixed" | "auto"): boolean; }; topContent: { type: import("vue").PropType import("vue/types/vnode").ScopedSlotReturnValue)>; }; verticalAlign: { type: import("vue").PropType<"top" | "bottom" | "middle">; default: "top" | "bottom" | "middle"; validator(val: "top" | "bottom" | "middle"): boolean; }; onActiveChange: import("vue").PropType<(activeRowKeys: (string | number)[], context: import("./type").ActiveChangeContext) => void>; onActiveRowAction: import("vue").PropType<(context: import("./type").ActiveRowActionContext) => void>; onCellClick: import("vue").PropType<(context: import("./type").BaseTableCellEventContext) => void>; onColumnResizeChange: import("vue").PropType<(context: { columnsWidth: { [colKey: string]: number; }; }) => void>; onPageChange: import("vue").PropType<(pageInfo: import("..").PageInfo, newDataSource: TableRowData[]) => void>; onRowClick: import("vue").PropType<(context: import("./type").RowEventContext) => void>; onRowDblclick: import("vue").PropType<(context: import("./type").RowEventContext) => void>; onRowMousedown: import("vue").PropType<(context: import("./type").RowEventContext) => void>; onRowMouseenter: import("vue").PropType<(context: import("./type").RowEventContext) => void>; onRowMouseleave: import("vue").PropType<(context: import("./type").RowEventContext) => void>; onRowMouseover: import("vue").PropType<(context: import("./type").RowEventContext) => void>; onRowMouseup: import("vue").PropType<(context: import("./type").RowEventContext) => void>; onScroll: import("vue").PropType<(params: { e: WheelEvent; }) => void>; onScrollX: import("vue").PropType<(params: { e: WheelEvent; }) => void>; onScrollY: import("vue").PropType<(params: { e: WheelEvent; }) => void>; }, import("@vue/composition-api").ExtractPropTypes<{ renderExpandedRow: PropType<(h: import("vue").CreateElement, params: import("./type").TableExpandedRowParams) => JSX.Element>; onLeafColumnsChange: PropType<(columns: BaseTableCol[]) => void>; thDraggable: BooleanConstructor; activeRowKeys: { type: import("vue").PropType<(string | number)[]>; default: any; }; defaultActiveRowKeys: { type: import("vue").PropType<(string | number)[]>; default: () => (string | number)[]; }; activeRowType: { type: import("vue").PropType<"multiple" | "single">; default: string; }; allowResizeColumnWidth: { type: BooleanConstructor; default: any; }; attach: { type: import("vue").PropType; }; bordered: BooleanConstructor; bottomContent: { type: import("vue").PropType import("vue/types/vnode").ScopedSlotReturnValue)>; }; cellEmptyContent: { type: import("vue").PropType) => import("vue/types/vnode").ScopedSlotReturnValue)>; }; columns: { type: import("vue").PropType[]>; default: () => BaseTableCol[]; }; data: { type: import("vue").PropType; default: () => TableRowData[]; }; disableDataPage: BooleanConstructor; disableSpaceInactiveRow: { type: BooleanConstructor; default: any; }; empty: { type: import("vue").PropType import("vue/types/vnode").ScopedSlotReturnValue)>; default: string; }; firstFullRow: { type: import("vue").PropType import("vue/types/vnode").ScopedSlotReturnValue)>; }; fixedRows: { type: import("vue").PropType; }; footData: { type: import("vue").PropType; default: () => TableRowData[]; }; footerAffixProps: { type: import("vue").PropType>; }; footerAffixedBottom: { type: import("vue").PropType>; default: boolean; }; footerSummary: { type: import("vue").PropType import("vue/types/vnode").ScopedSlotReturnValue)>; }; headerAffixProps: { type: import("vue").PropType>; }; headerAffixedTop: { type: import("vue").PropType>; default: boolean; }; height: { type: import("vue").PropType; }; horizontalScrollAffixedBottom: { type: import("vue").PropType>; }; hover: BooleanConstructor; keyboardRowHover: { type: BooleanConstructor; default: boolean; }; lastFullRow: { type: import("vue").PropType import("vue/types/vnode").ScopedSlotReturnValue)>; }; lazyLoad: BooleanConstructor; loading: { type: import("vue").PropType import("vue/types/vnode").ScopedSlotReturnValue)>; default: any; }; loadingProps: { type: import("vue").PropType>; }; locale: { type: import("vue").PropType; }; maxHeight: { type: import("vue").PropType; }; pagination: { type: import("vue").PropType; }; paginationAffixedBottom: { type: import("vue").PropType>; }; resizable: BooleanConstructor; rowAttributes: { type: import("vue").PropType>; }; rowClassName: { type: import("vue").PropType) => import("../common").ClassName)>; }; rowKey: { type: StringConstructor; default: string; required: boolean; }; rowspanAndColspan: { type: import("vue").PropType>; }; rowspanAndColspanInFooter: { type: import("vue").PropType>; }; scroll: { type: import("vue").PropType; }; showHeader: { type: BooleanConstructor; default: boolean; }; size: { type: import("vue").PropType; default: import("../common").SizeEnum; validator(val: import("../common").SizeEnum): boolean; }; stripe: BooleanConstructor; tableContentWidth: { type: StringConstructor; default: string; }; tableLayout: { type: import("vue").PropType<"fixed" | "auto">; default: "fixed" | "auto"; validator(val: "fixed" | "auto"): boolean; }; topContent: { type: import("vue").PropType import("vue/types/vnode").ScopedSlotReturnValue)>; }; verticalAlign: { type: import("vue").PropType<"top" | "bottom" | "middle">; default: "top" | "bottom" | "middle"; validator(val: "top" | "bottom" | "middle"): boolean; }; onActiveChange: import("vue").PropType<(activeRowKeys: (string | number)[], context: import("./type").ActiveChangeContext) => void>; onActiveRowAction: import("vue").PropType<(context: import("./type").ActiveRowActionContext) => void>; onCellClick: import("vue").PropType<(context: import("./type").BaseTableCellEventContext) => void>; onColumnResizeChange: import("vue").PropType<(context: { columnsWidth: { [colKey: string]: number; }; }) => void>; onPageChange: import("vue").PropType<(pageInfo: import("..").PageInfo, newDataSource: TableRowData[]) => void>; onRowClick: import("vue").PropType<(context: import("./type").RowEventContext) => void>; onRowDblclick: import("vue").PropType<(context: import("./type").RowEventContext) => void>; onRowMousedown: import("vue").PropType<(context: import("./type").RowEventContext) => void>; onRowMouseenter: import("vue").PropType<(context: import("./type").RowEventContext) => void>; onRowMouseleave: import("vue").PropType<(context: import("./type").RowEventContext) => void>; onRowMouseover: import("vue").PropType<(context: import("./type").RowEventContext) => void>; onRowMouseup: import("vue").PropType<(context: import("./type").RowEventContext) => void>; onScroll: import("vue").PropType<(params: { e: WheelEvent; }) => void>; onScrollX: import("vue").PropType<(params: { e: WheelEvent; }) => void>; onScrollY: import("vue").PropType<(params: { e: WheelEvent; }) => void>; }>> & Omit, never> & (new (...args: any[]) => import("@vue/composition-api").ComponentRenderProxy<{ data: TableRowData[]; columns: BaseTableCol[]; tableLayout: "fixed" | "auto"; verticalAlign: "top" | "bottom" | "middle"; loading: boolean | ((h: import("vue").CreateElement) => import("vue/types/vnode").ScopedSlotReturnValue); size: import("../common").SizeEnum; empty: string | ((h: import("vue").CreateElement) => import("vue/types/vnode").ScopedSlotReturnValue); hover: boolean; lazyLoad: boolean; bordered: boolean; showHeader: boolean; stripe: boolean; activeRowKeys: (string | number)[]; defaultActiveRowKeys: (string | number)[]; activeRowType: "multiple" | "single"; allowResizeColumnWidth: boolean; disableDataPage: boolean; disableSpaceInactiveRow: boolean; footData: TableRowData[]; footerAffixedBottom: boolean; headerAffixedTop: boolean; keyboardRowHover: boolean; resizable: boolean; rowKey: string; tableContentWidth: string; thDraggable: boolean; } & { height?: string | number; maxHeight?: string | number; scroll?: import("../common").TScroll; pagination?: unknown; attach?: import("../common").AttachNode; onScroll?: (params: { e: WheelEvent; }) => void; onCellClick?: (context: import("./type").BaseTableCellEventContext) => void; onPageChange?: (pageInfo: import("..").PageInfo, newDataSource: TableRowData[]) => void; loadingProps?: unknown; bottomContent?: string | ((h: import("vue").CreateElement) => import("vue/types/vnode").ScopedSlotReturnValue); cellEmptyContent?: string | ((h: import("vue").CreateElement, props: import("./type").BaseTableCellParams) => import("vue/types/vnode").ScopedSlotReturnValue); firstFullRow?: string | ((h: import("vue").CreateElement) => import("vue/types/vnode").ScopedSlotReturnValue); fixedRows?: number[]; footerAffixProps?: unknown; footerSummary?: string | ((h: import("vue").CreateElement) => import("vue/types/vnode").ScopedSlotReturnValue); headerAffixProps?: unknown; horizontalScrollAffixedBottom?: unknown; lastFullRow?: string | ((h: import("vue").CreateElement) => import("vue/types/vnode").ScopedSlotReturnValue); locale?: unknown; paginationAffixedBottom?: unknown; rowAttributes?: import("./type").TableRowAttributes; rowClassName?: unknown; rowspanAndColspan?: import("./type").TableRowspanAndColspanFunc; rowspanAndColspanInFooter?: import("./type").TableRowspanAndColspanFunc; topContent?: string | ((h: import("vue").CreateElement) => import("vue/types/vnode").ScopedSlotReturnValue); onActiveChange?: (activeRowKeys: (string | number)[], context: import("./type").ActiveChangeContext) => void; onActiveRowAction?: (context: import("./type").ActiveRowActionContext) => void; onColumnResizeChange?: (context: { columnsWidth: { [colKey: string]: number; }; }) => void; onRowClick?: (context: import("./type").RowEventContext) => void; onRowDblclick?: (context: import("./type").RowEventContext) => void; onRowMousedown?: (context: import("./type").RowEventContext) => void; onRowMouseenter?: (context: import("./type").RowEventContext) => void; onRowMouseleave?: (context: import("./type").RowEventContext) => void; onRowMouseover?: (context: import("./type").RowEventContext) => void; onRowMouseup?: (context: import("./type").RowEventContext) => void; onScrollX?: (params: { e: WheelEvent; }) => void; onScrollY?: (params: { e: WheelEvent; }) => void; renderExpandedRow?: (h: import("vue").CreateElement, params: import("./type").TableExpandedRowParams) => JSX.Element; onLeafColumnsChange?: (columns: BaseTableCol[]) => void; }, import("@vue/composition-api").ShallowUnwrapRef<{ virtualConfig: { visibleData: import("@vue/composition-api").Ref; translateY: import("@vue/composition-api").Ref; scrollHeight: import("@vue/composition-api").Ref; isVirtualScroll: import("@vue/composition-api").ComputedRef; handleScroll: () => void; handleRowMounted: (rowData: any) => void; scrollToElement: (p: import("../hooks").ScrollToElementParams) => void; }; scrollToElement: (params: ComponentScrollToElementParams) => void; columnResizable: import("@vue/composition-api").ComputedRef; thList: import("@vue/composition-api").ComputedRef[][]>; classPrefix: string; innerPagination: import("@vue/composition-api").Ref; global: import("@vue/composition-api").ComputedRef<{} & import("..").TableConfig>; tableFootHeight: import("@vue/composition-api").Ref; tableWidth: import("@vue/composition-api").Ref; tableElmWidth: import("@vue/composition-api").Ref; tableRef: import("@vue/composition-api").Ref; tableElmRef: import("@vue/composition-api").Ref; sizeClassNames: { small: string; medium: string; large: string; default: string; xs: string; xl: string; block: string; }; tableBaseClass: { table: (string | { [x: string]: boolean; })[]; columnResizableTable: string; overflowVisible: string; body: string; content: string; topContent: string; bottomContent: string; paginationWrap: string; tdLastRow: string; tdFirstCol: string; thCellInner: string; tableRowEdit: string; cellEditable: string; cellEditWrap: string; bordered: string; striped: string; hover: string; loading: string; rowspanAndColspan: string; empty: string; emptyRow: string; headerFixed: string; columnFixed: string; widthOverflow: string; multipleHeader: string; footerAffixed: string; horizontalBarAffixed: string; affixedHeader: string; affixedHeaderElm: string; affixedFooterElm: string; affixedFooterWrap: string; scrollbarDivider: string; fullHeight: string; resizeLine: string; obviousScrollbar: string; affixedHeaderWrap: string; }; spansAndLeafNodes: import("@vue/composition-api").ComputedRef<{ rowspanAndColspanMap: import("./interface").ThRowspanAndColspan; leafColumns: BaseTableCol[]; }>; dynamicBaseTableClasses: import("@vue/composition-api").ComputedRef; tableContentStyles: import("@vue/composition-api").ComputedRef; tableElementStyles: import("@vue/composition-api").ComputedRef; virtualScrollClasses: { cursor: string; header: string; }; tableLayoutClasses: { auto: string; fixed: string; }; tableElmClasses: import("@vue/composition-api").ComputedRef; dividerBottom: import("@vue/composition-api").ComputedRef; tableContentRef: import("@vue/composition-api").Ref; isFixedHeader: import("@vue/composition-api").Ref; isWidthOverflow: import("@vue/composition-api").Ref; isFixedColumn: import("@vue/composition-api").Ref; rowAndColFixedPosition: import("@vue/composition-api").Ref; showColumnShadow: { left: boolean; right: boolean; }; thWidthList: import("@vue/composition-api").Ref<{ [x: string]: number; }>; isPaginateData: import("@vue/composition-api").ComputedRef; dataSource: import("@vue/composition-api").Ref<{ [x: string]: any; children?: any[]; }[]>; affixHeaderRef: import("@vue/composition-api").Ref; affixFooterRef: import("@vue/composition-api").Ref; paginationRef: import("@vue/composition-api").Ref; bottomContentRef: import("@vue/composition-api").Ref; showAffixHeader: import("@vue/composition-api").Ref; showAffixFooter: import("@vue/composition-api").Ref; scrollbarWidth: import("@vue/composition-api").Ref; isMultipleHeader: import("@vue/composition-api").ComputedRef; showRightDivider: import("@vue/composition-api").ComputedRef; resizeLineRef: import("@vue/composition-api").Ref; resizeLineStyle: { display: string; height: string; left: string; bottom: string; }; columnResizeParams: { resizeLineRef: import("@vue/composition-api").Ref; resizeLineStyle: { display: string; height: string; left: string; bottom: string; }; onColumnMouseover: (e: MouseEvent, col: BaseTableCol) => void; onColumnMousedown: (e: MouseEvent, col: BaseTableCol, index: number) => void; setEffectColMap: (nodes: BaseTableCol[], parent: BaseTableCol) => void; }; horizontalScrollbarRef: import("@vue/composition-api").Ref; tableBodyRef: import("@vue/composition-api").Ref; showAffixPagination: import("@vue/composition-api").Ref; showElement: import("@vue/composition-api").Ref; getListener: () => TableListeners; renderPagination: (h: import("vue").CreateElement) => JSX.Element; onFixedChange: () => void; onHorizontalScroll: (scrollElement?: HTMLElement) => void; updateAffixHeaderOrFooter: () => void; refreshTable: () => void; onInnerVirtualScroll: (e: WheelEvent) => void; scrollColumnIntoView: (colKey: string) => void; paginationAffixRef: import("@vue/composition-api").Ref; horizontalScrollAffixRef: import("@vue/composition-api").Ref; headerTopAffixRef: import("@vue/composition-api").Ref; footerBottomAffixRef: import("@vue/composition-api").Ref; isIE: import("@vue/composition-api").ComputedRef; }>, import("@vue/composition-api").Data, {}, { renderColGroup(columns: BaseTableCol[], isAffixHeader?: boolean): JSX.Element; getHeadProps(isAffixHeader?: boolean): { isFixedHeader: boolean; showColumnShadow: { left: boolean; right: boolean; }; thDraggable: boolean; rowAndColFixedPosition: import("./interface").RowAndColFixedPosition; isMultipleHeader: boolean; bordered: boolean; maxHeight: string | number; height: string | number; spansAndLeafNodes: { rowspanAndColspanMap: import("./interface").ThRowspanAndColspan; leafColumns: BaseTableCol[]; }; thList: BaseTableCol[][]; thWidthList: { [x: string]: number; }; resizable: boolean; columnResizeParams: { resizeLineRef: import("@vue/composition-api").Ref; resizeLineStyle: { display: string; height: string; left: string; bottom: string; }; onColumnMouseover: (e: MouseEvent, col: BaseTableCol) => void; onColumnMousedown: (e: MouseEvent, col: BaseTableCol, index: number) => void; setEffectColMap: (nodes: BaseTableCol[], parent: BaseTableCol) => void; }; classPrefix: string; ellipsisOverlayClassName: string; attach: import("../common").AttachNode; }; renderFixedHeader(columns: BaseTableCol[]): JSX.Element; renderAffixedFooter(columns: BaseTableCol[]): JSX.Element; renderAffixedHeader(columns: BaseTableCol[]): JSX.Element; }, {}, {}, {}, { data: TableRowData[]; columns: BaseTableCol[]; tableLayout: "fixed" | "auto"; verticalAlign: "top" | "bottom" | "middle"; loading: boolean | ((h: import("vue").CreateElement) => import("vue/types/vnode").ScopedSlotReturnValue); size: import("../common").SizeEnum; empty: string | ((h: import("vue").CreateElement) => import("vue/types/vnode").ScopedSlotReturnValue); hover: boolean; lazyLoad: boolean; bordered: boolean; showHeader: boolean; stripe: boolean; activeRowKeys: (string | number)[]; defaultActiveRowKeys: (string | number)[]; activeRowType: "multiple" | "single"; allowResizeColumnWidth: boolean; disableDataPage: boolean; disableSpaceInactiveRow: boolean; footData: TableRowData[]; footerAffixedBottom: boolean; headerAffixedTop: boolean; keyboardRowHover: boolean; resizable: boolean; rowKey: string; tableContentWidth: string; thDraggable: boolean; } & { height?: string | number; maxHeight?: string | number; scroll?: import("../common").TScroll; pagination?: unknown; attach?: import("../common").AttachNode; onScroll?: (params: { e: WheelEvent; }) => void; onCellClick?: (context: import("./type").BaseTableCellEventContext) => void; onPageChange?: (pageInfo: import("..").PageInfo, newDataSource: TableRowData[]) => void; loadingProps?: unknown; bottomContent?: string | ((h: import("vue").CreateElement) => import("vue/types/vnode").ScopedSlotReturnValue); cellEmptyContent?: string | ((h: import("vue").CreateElement, props: import("./type").BaseTableCellParams) => import("vue/types/vnode").ScopedSlotReturnValue); firstFullRow?: string | ((h: import("vue").CreateElement) => import("vue/types/vnode").ScopedSlotReturnValue); fixedRows?: number[]; footerAffixProps?: unknown; footerSummary?: string | ((h: import("vue").CreateElement) => import("vue/types/vnode").ScopedSlotReturnValue); headerAffixProps?: unknown; horizontalScrollAffixedBottom?: unknown; lastFullRow?: string | ((h: import("vue").CreateElement) => import("vue/types/vnode").ScopedSlotReturnValue); locale?: unknown; paginationAffixedBottom?: unknown; rowAttributes?: import("./type").TableRowAttributes; rowClassName?: unknown; rowspanAndColspan?: import("./type").TableRowspanAndColspanFunc; rowspanAndColspanInFooter?: import("./type").TableRowspanAndColspanFunc; topContent?: string | ((h: import("vue").CreateElement) => import("vue/types/vnode").ScopedSlotReturnValue); onActiveChange?: (activeRowKeys: (string | number)[], context: import("./type").ActiveChangeContext) => void; onActiveRowAction?: (context: import("./type").ActiveRowActionContext) => void; onColumnResizeChange?: (context: { columnsWidth: { [colKey: string]: number; }; }) => void; onRowClick?: (context: import("./type").RowEventContext) => void; onRowDblclick?: (context: import("./type").RowEventContext) => void; onRowMousedown?: (context: import("./type").RowEventContext) => void; onRowMouseenter?: (context: import("./type").RowEventContext) => void; onRowMouseleave?: (context: import("./type").RowEventContext) => void; onRowMouseover?: (context: import("./type").RowEventContext) => void; onRowMouseup?: (context: import("./type").RowEventContext) => void; onScrollX?: (params: { e: WheelEvent; }) => void; onScrollY?: (params: { e: WheelEvent; }) => void; renderExpandedRow?: (h: import("vue").CreateElement, params: import("./type").TableExpandedRowParams) => JSX.Element; onLeafColumnsChange?: (columns: BaseTableCol[]) => void; }, { data: TableRowData[]; columns: BaseTableCol[]; tableLayout: "fixed" | "auto"; verticalAlign: "top" | "bottom" | "middle"; loading: boolean | ((h: import("vue").CreateElement) => import("vue/types/vnode").ScopedSlotReturnValue); size: import("../common").SizeEnum; empty: string | ((h: import("vue").CreateElement) => import("vue/types/vnode").ScopedSlotReturnValue); hover: boolean; lazyLoad: boolean; bordered: boolean; showHeader: boolean; stripe: boolean; activeRowKeys: (string | number)[]; defaultActiveRowKeys: (string | number)[]; activeRowType: "multiple" | "single"; allowResizeColumnWidth: boolean; disableDataPage: boolean; disableSpaceInactiveRow: boolean; footData: TableRowData[]; footerAffixedBottom: boolean; headerAffixedTop: boolean; keyboardRowHover: boolean; resizable: boolean; rowKey: string; tableContentWidth: string; thDraggable: boolean; }, true>); export default _default;