// generated by diplomat-tool import type { pointer, codepoint } from "./diplomat-runtime.d.ts"; /** * Color interpolation space for gradient brushes. The old ABI passed this as * `space: c_int` (`1` = Oklab, anything else = RGB). */ export class InterpolationSpace { /** @internal */ static fromValue(value: InterpolationSpace | string): InterpolationSpace; get value(): string; /** @internal */ get ffiValue(): number; static Rgb : InterpolationSpace; static Oklab : InterpolationSpace; constructor(value: InterpolationSpace | string ); }