import type { RgbTuple } from '../../types/rgb-tuple';
import { SimpleFrame } from '../frame/simple-frame';
/**
 * Generates intermediate frames between two RGB colors.
 * These don't include the start and end frames.
 * @category Animations
 */
export declare function morph(from: RgbTuple, to: RgbTuple, overMs: number, steps?: number): Iterable<SimpleFrame>;
//# sourceMappingURL=morph.d.ts.map