import type { SharedValue } from "react-native-reanimated"; import type { SkImage } from "../../skia/types"; type MaybeAnimated = SharedValue | T; interface PlaybackOptions { looping: MaybeAnimated; paused: MaybeAnimated; seek: MaybeAnimated; volume: MaybeAnimated; } export declare const useVideo: (source: string | null, userOptions?: Partial) => { currentFrame: SharedValue; currentTime: SharedValue; duration: number; framerate: number; rotation: import("../../skia/types").VideoRotation; size: { width: number; height: number; }; }; export {};