/** * Sizing props for a `BottomSheetModal`; `topInset` stays with the caller. A * gorhom scrollable reports only its own height, so a screen with one can't be * measured — it takes a fixed detent and sizes itself. */ export declare function sheetSizing({ fullHeight }: { fullHeight: boolean; }): { enableDynamicSizing: boolean; snapPoints: string[]; } | { enableDynamicSizing: boolean; snapPoints?: undefined; }; /** * `focusHook` that keeps `BottomSheetView`'s measuring but drops its * static-view registration, which over-drags the sheet on first touch. Calls * `useEffect` the way the default does, deps argument and all: React rejects a * slot whose argument count changes when a screen flips between the two. */ export declare function useInertScrollableFocus(_register: () => void): void; //# sourceMappingURL=sheetSizing.d.ts.map