import { View } from "react-native"; /** * Determines the location of the given view in the window and resolve the values. * * This function returns a promise that resolves with the layout coordinates * of the component in the window. * * @param {React.RefObject} ref - The reference to the component to measure. * @returns {Promise<{ x: number, y: number, width: number, height: number }>} A promise that resolves with the layout coordinates. */ export declare const measureInWindow: (ref: React.RefObject) => Promise<{ x: number; y: number; width: number; height: number; }>;