import type * as Pinnacle from "../index.js"; /** * Two-stop linear gradient. Supply separate light- and dark-mode gradients; the renderer picks based on `theme_mode`. */ export interface FormBackgroundGradient { /** Gradient used when the form renders in light mode. */ light: Pinnacle.FormGradient; /** Gradient used when the form renders in dark mode. */ dark: Pinnacle.FormGradient; }