import type { ColorInput } from "bun"; /** Resolve any ColorInput to a packed 24-bit integer. */ export declare function packColor(color: ColorInput): number; /** Lerp between two colors. Accepts and returns any ColorInput-compatible value. */ export declare function lerpColor(from: ColorInput, to: ColorInput, t: number): number; /** Lighten a color by +30 per channel, clamped to 255. */ export declare function lighten(color: ColorInput): number; //# sourceMappingURL=utils.d.ts.map