import { AnimateOptions } from "../types.js"; export declare const CANCELLED: {}; export declare function animate({ from, to, callback, steps }: AnimateOptions): void; export declare function interpolate(from: number, to: number, progress: number): number; export declare function getFps(): Promise;