import React from 'react'; import { ImageStyle, ViewStyle } from 'react-native'; export interface VideoPreviewProps { source: { uri: string; } | number; thumbnailUrl?: string; videoStyle?: ViewStyle; thumbnailStyle?: ImageStyle; onClicked?: () => void; onLongPress?: () => void; onError?: (error: any) => void; } export interface VideoPreviewRef { seek: (time: number, tolerance?: number) => void; resume: () => void; pause: () => void; presentFullscreenPlayer?: () => void; } export declare const VideoPreview: React.ForwardRefExoticComponent>; //# sourceMappingURL=VideoPreview.d.ts.map