import type { TableSticky } from '../OcTable.types'; /** Sticky header hooks */ export default function useSticky(sticky: boolean | TableSticky): { isSticky: boolean; offsetHeader: number; offsetSummary: number; offsetScroll: number; stickyClassName: string; container: Window | HTMLElement; };