import { KeyframeOptions, hex } from '../types'; /** * Interpolates a color between two keyframes * @param options - The keyframe options * @param timestamp - The current time in seconds * @returns The interpolated color */ export declare function interpolateColor(options: KeyframeOptions, timestamp: number): hex;