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<ResultType>;
    SetRotator(eid: string, rotator: RotatorType): Promise<ResultType>;
    SetScale3d(eid: string, scale3d: ScaleType): Promise<ResultType>;
    GetTransform(eid: string): Promise<ResultType>;
}
export default TransformAtomController;
