/**
 * ease-in-out的函数
 * @param t 0-1的数字
 */
export declare const easeInOut: (t: number) => number;
export declare const getTimingFunc: (easeFunc: any, frameCnt: any) => (x: any) => any;
