import { ViewStyle } from "react-native"; export interface ViewMeasurements { width: number; height: number; } interface Props { children: React.ReactNode; setMeasuredState: (measuredState: ViewMeasurements) => void; /** for debugging, this will render the view where it is, not offscreen. */ show?: boolean; } /** * A view that renders off-screen, measures the width and height of the view, and reports it back. * Note: it is rendering just null when in test mode. */ export declare const MeasuredView: ({ children, setMeasuredState, show }: Props) => import("react/jsx-runtime").JSX.Element; export declare const useOffscreenStyle: (notOffscreen?: boolean) => ViewStyle; export {};