import { FunctionalComponent, ComponentInterface } from '../stencil-public-runtime'; import { JSXBase, HTMLStencilElement } from '../stencil-public-runtime'; import { JSX } from '../components'; /** * HOC to wrap components with Animatable component * @param WrappedComponent - Component to be animated with Animatable component */ export declare function createAnimatableComponent(WrappedComponent: FunctionalComponent): (props: Props & ComponentInterface & JSX.AnimatableComponent & JSXBase.HTMLAttributes & JSXBase.HTMLAttributes & JSXBase.HTMLAttributes) => FunctionalComponent & JSXBase.HTMLAttributes & JSXBase.HTMLAttributes>;