/// /** * Hook for transitioning background color based on scroll position. * * @param colors - An array of color values representing the gradient. * @returns An object with the active color and a ref to the target element. * * @example * ```tsx * const { color, ref } = useBgColorTransition(['#ff0000', '#00ff00', '#0000ff']); * ``` */ export declare const useBgColorTransition: (colors: string[]) => { color: string | undefined; ref: import('react').MutableRefObject; }; //# sourceMappingURL=use-sticky-scroll.d.ts.map