import type { BaseGesture, GestureRef } from '../handlers/gestures/gesture'; type TVProps = { focusable?: boolean | undefined; isTVSelectable?: boolean | undefined; }; /** * Gesture Handler buttons render the native button component directly, bypassing RN's `` — * the only place the `focusable` prop is translated into `isTVSelectable`, which actually drives * tvOS focusability. */ export declare function getTVProps(props: TVProps): TVProps; export type RelationPropName = 'simultaneousWithExternalGesture' | 'requireExternalGestureToFail' | 'blocksExternalGesture'; export type RelationPropType = Exclude | Exclude[]; export declare function applyRelationProp(gesture: BaseGesture, relationPropName: RelationPropName, relationProp: RelationPropType): void; export {}; //# sourceMappingURL=utils.d.ts.map