export type StickyThemeVars = { stickyZIndex?: number | string; }; export type StickyPosition = 'top' | 'bottom'; export type StickyScrollParams = { scrollTop: number; isFixed: boolean; };