import React from 'react'; import {SpringyDOMWrapper, DOMSpringConfigMap} from './types'; import SpringyDOMElement from './SpringyDOMElement'; function getSpringyDOMElement(ComponentToWrap: string, configMap?: DOMSpringConfigMap | null, styleOnExit?: any) { return React.forwardRef((props, ref) => ( )); } export default (getSpringyDOMElement as any) as SpringyDOMWrapper;