import { LayoutChangeEvent, View } from 'react-native'; export interface MeasuredHeightResult { ref: React.RefObject; height: number; onLayout: (e: LayoutChangeEvent) => void; hasMeasured: boolean; } export declare function useMeasuredHeight(initialExpanded: boolean): MeasuredHeightResult;