import React from 'react';
import type { W1VideoBlockProps } from './types';
/**
 * W1VideoBlock - Complete video solution with coordination
 *
 * This component provides a complete video experience including:
 * - Video coordination between multiple players
 * - Click-to-play/pause interaction
 * - Store management and state coordination
 * - Visibility management and autoplay control
 *
 * GSAP animations are handled externally by parent components.
 * Uses W1VideoPlayer as the pure video engine underneath.
 */
declare const W1VideoBlock: React.FC<W1VideoBlockProps>;
export { W1VideoBlock };
