export declare class TransformEngine { private element; private transforms; constructor(element: HTMLElement); scale(value: number): this; rotate(value: string): this; translate(x: string, y: string): this; translateX(value: string): this; translateY(value: string): this; skew(x: string, y: string): this; perspective(value: string): this; rotateX(value: string): this; rotateY(value: string): this; transformOrigin(value: string): this; originCenter(): this; originTop(): this; transition(property: string, duration: string, easing?: string): this; transitionAll(duration: string, easing?: string): this; animate(name: string, duration: string, easing?: string): this; reset(): this; private apply; } //# sourceMappingURL=index.d.ts.map