import React from 'react';
import { IThirdPartyAnimation } from './types/thirdPartyAnimation';
declare const ThirdPartyAnimationComponent: <V extends string | unknown>({ autoplay, loop, variant, ...props }: IThirdPartyAnimation<V>, ref: React.ForwardedRef<HTMLSpanElement | null>) => JSX.Element;
/**
 * @deprecated This component has been deprecated and will be removed in the next MAJOR release.
 *
 * ThirdPartyAnimation component is a component that can be used to create third-party animations.
 * @param {React.PropsWithChildren<IThirdPartyAnimation<V>>} props
 * @returns {JSX.Element}
 */
declare const ThirdPartyAnimation: <V>(props: React.PropsWithChildren<IThirdPartyAnimation<V>> & {
    ref?: React.ForwardedRef<HTMLSpanElement | null> | undefined | null;
}) => ReturnType<typeof ThirdPartyAnimationComponent>;
export { ThirdPartyAnimation };
