import * as React from 'react';
import { ElementType } from '@react-spring/types';
import { HostConfig } from './createHost';
export declare type AnimatableComponent = string | Exclude<ElementType, string>;
export declare const withAnimated: (Component: any, host: HostConfig) => React.ForwardRefExoticComponent<Pick<any, string | number | symbol> & React.RefAttributes<any>>;
