/** * Enhances a component to ensure that setState can only be called if the * component is mounted. */ declare function withSafeSetState(): (WrappedComponent: any) => any; export default withSafeSetState;