/** * 获取 React-Native components 的 `width` 和 `height` * 代码来自:https://github.com/obipawan/react-native-measureme */ import React from 'react'; import type { ViewProps } from 'react-native'; export declare type MeasureMeState = { width: number; height: number; initialRender: true; }; declare const measureMeHOC:

(ComposedComponent: React.ComponentType

) => React.FC

; export default measureMeHOC;