import { IProps, IObject } from '../typings'; import { Tween } from '../'; declare class style { props: IProps; static key: string; static className: string; computedStyle?: IObject; root: Tween; index?: number; targetIndex?: number; tweenVars: IObject; transformName: string; filterName: string; target: any; start: IObject; startAt: IObject; propsData: any; constructor(props: IProps); setDefaultData: () => void; getTweenData: (key: string, v: any) => any; setStartAtValue: (start: any, startAt: any) => any; getAnimStart: () => IObject; render: (ratio: number) => any; } export default style;