/** * External dependencies */ import type { ComponentType } from 'react'; /** * Given a component returns the enhanced component augmented with a component * only re-rendering when its props/state change */ declare const pure: (Inner: ComponentType) => ComponentType; export default pure; //# sourceMappingURL=index.d.ts.map