import React from 'react'; export type PositionContextValue = { isFullWidth: boolean; helperImageSrc?: string | null; updateVideoSize: (opts: { videoWidth: number; videoHeight: number; }) => void; }; declare const PositionContext: React.Context; export default PositionContext;