/** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * @flow * @format */ 'use strict'; import AnimatedNode from './AnimatedNode'; import AnimatedWithChildren from './AnimatedWithChildren'; import NativeAnimatedHelper from '../NativeAnimatedHelper'; declare class AnimatedTransform extends AnimatedWithChildren { _transforms: $ReadOnlyArray, constructor(transforms: $ReadOnlyArray): any, __makeNative(): any, __getValue(): $ReadOnlyArray, __getAnimatedValue(): $ReadOnlyArray, __attach(): void, __detach(): void, __getNativeConfig(): any, } export default AnimatedTransform;