import React, { type FC, type ReactNode } from 'react'; import { type StyleProp, type ViewStyle } from 'react-native'; import type { GestureHandlerProps } from '../types'; /** * A component that displays the seek time text. */ export declare const SeekText: FC<{ children: ReactNode; }>; /** * A component that displays an overlayed view. */ export declare const OverlayedView: React.ForwardRefExoticComponent<{ children: ReactNode; style: StyleProp; } & React.RefAttributes>; /** * A component that handles gestures for the video player. * * This component is responsible for handling single-tap, double-tap, and pan gestures. */ export declare const GestureHandler: FC; export default GestureHandler; //# sourceMappingURL=GestureHandler.d.ts.map