import { TransformAxisType, TransformType, ConstraintAxisType } from "./types"; declare class KinesisTransformerElement { element: HTMLElement; strength: number; type: TransformType; transformAxis: TransformAxisType[]; constraintAxis: ConstraintAxisType | null; initialTransform: string; transformOrigin: string; mutationObserver: MutationObserver; constructor(element: HTMLElement); updatePropertiesFromAttributes(): void; handleAttributeChange: (mutationsList: MutationRecord[]) => void; applyTransform(x: number, y: number): void; resetTransform(): void; disconnectObserver(): void; } export default KinesisTransformerElement;