import React from 'react'; import { TableProps } from './interfaces'; import { TheadProps } from './thead'; export interface StickyHeaderRef { scrollToTop(): void; scrollToRow(node: null | HTMLElement): void; setFocusedColumn(columnIndex: null | number): void; } interface StickyHeaderProps { variant: TableProps.Variant; theadProps: TheadProps; wrapperRef: React.RefObject; theadRef: React.RefObject; secondaryWrapperRef: React.RefObject; tableRef: React.RefObject; onScroll?: React.UIEventHandler; } declare const _default: React.ForwardRefExoticComponent>; export default _default; //# sourceMappingURL=sticky-header.d.ts.map