import { ResultType, CoordType, RotatorType, ScaleType } from '../common/data-type'; declare class TransformAtomController { private apiClassName; private obj; constructor(obj: any); SetLocation(eid: string, location: CoordType): Promise; SetRotator(eid: string, rotator: RotatorType): Promise; SetScale3d(eid: string, scale3d: ScaleType): Promise; GetTransform(eid: string): Promise; } export default TransformAtomController;