import type React from 'react'; import type { TextInput } from 'react-native'; import type { LogParams } from '../logger'; export declare type CheckFocusTrap = { ref: React.RefObject; shouldHaveFocus: boolean; }; export declare const checkFocusTrap: ({ ref, shouldHaveFocus, }: CheckFocusTrap) => Promise;