import { RefObject } from "react"; import { View } from "react-native"; /** * * Measures the content height of a component to display in the Bottom sheet, based on it's anchor element. * * @param {React.RefObject} anchorRef - The reference the anchor element. * @param {number} [screenIndent=20] - The screen indentation. * @returns {Promise<{ x: number, y: number, width: number, height: number, contentHeight: number }>} A promise that resolves with the layout coordinates and content height. */ export declare function measureContentHeight(anchorRef: RefObject, minContentHeight?: number): Promise<{ contentHeight: number; x: number; y: number; width: number; height: number; }>;