import { DrawArgs, InnerGridCell } from '@glideappsfinal/glide-data-grid'; export type AnimationEasing = (t: number) => number; export interface NumericAnimationOptions { duration?: number; easing?: AnimationEasing; initialValue?: number; } export declare const easeOutCubic: AnimationEasing; export declare const easeInOutCubic: AnimationEasing; export declare function animateNumericValue(args: DrawArgs, cellIdentity: string, animationKey: string, targetValue: number, options?: NumericAnimationOptions): number;