import { ReactNode } from "react"; type GradientDirection = "top" | "bottom" | "left" | "right"; type GradientStop = { offset: string; color: string; opacity: number; }; export declare function useLinearGradient(to: GradientDirection, stops: GradientStop[]): [string, ReactNode]; export {};