/** * Expo Router currently supports the native bottom search-bar slot on iOS 26 * and newer. Rendering the host on other platforms would create an empty * overlay, because `Stack.Toolbar.SearchBarSlot` is unavailable there. */ export declare const supportsRoadmapBottomToolbar: boolean; /** * Resolves the total bottom space occupied by the safe area and, when * requested, the native stack bottom toolbar. * * An explicit value is returned unchanged so callers can provide a custom * host inset or disable automatic spacing with `0`. * * @param bottomInset Total host-provided bottom space, if supplied. * @param bottomToolbarVisible Whether the package's native bottom toolbar is * rendered for the current platform. */ export declare function useStackBottomInset(bottomInset: number | undefined, bottomToolbarVisible: boolean): number; //# sourceMappingURL=stackInsets.d.ts.map