import { TransitionOptions } from '../types'; export declare const easing: { easeInOut: string; easeOut: string; easeIn: string; sharp: string; }; export declare const duration: { shortest: number; shorter: number; short: number; standard: number; complex: number; enteringScreen: number; leavingScreen: number; }; export declare const formatMs: (miliseconds: number) => string; /** * 创建css3变换表达式 * * @param props css3变换属性,可以是1个或者多个 * @param options css3变换配置 */ declare function createTransition(props?: string | string[], options?: TransitionOptions): string; /** * 根据高度获取动画时长 * * @param height 高度 */ declare function getAutoHeightDuration(height?: number): number; declare const transitions: { easing: { easeInOut: string; easeOut: string; easeIn: string; sharp: string; }; duration: { shortest: number; shorter: number; short: number; standard: number; complex: number; enteringScreen: number; leavingScreen: number; }; create: typeof createTransition; getAutoHeightDuration: typeof getAutoHeightDuration; }; export default transitions;