import { type GradientStop } from "./gradient"; export type Vec3 = [number, number, number]; /** * Resolve a series palette: use the discrete `--psp-charts--series-N--color` * palette when available, otherwise fall back to evenly-spaced samples of * the theme gradient. */ export declare function resolvePalette(discrete: Vec3[], stops: GradientStop[], count: number): Vec3[];