import React from 'react';
import { AnimatedProps, HTMLTags } from './common.js';
/**
* An Animated component that is controlled by the currentAnimation prop
* The component may use a different HTML tag delegate via the `as` prop
* May accept a ref to forward to the HTML tag delegate.
* Note: forwarding a ref returned from {@link hooks.useAnimatedRef} may result in undeterministic behavior
*
* @typeParam A the accepted animation names
* @typeParam T the HTML Tag delegate
*/
declare const ControlledAnimated: (props: AnimatedProps) => React.ReactElement;
export default ControlledAnimated;