import { KeyframeOptions } from '../types'; /** * Interpolates a text between two keyframes * @param options - The keyframe options * @param timestamp - The current timestamp * @returns The interpolated text */ export declare function interpolateText(options: KeyframeOptions, timestamp: number): string;