import { default as React } from 'react'; export interface VideoPlayerProps { /** Video source URL */ src: string; /** Poster image URL */ poster?: string; /** Auto play */ autoPlay?: boolean; /** Loop playback */ loop?: boolean; /** Muted by default */ muted?: boolean; /** Show controls */ controls?: boolean; /** Additional className */ className?: string; } /** * VideoPlayer Component * * Simple video player with custom controls. * Supports play/pause, volume, and fullscreen. * * @example * ```tsx * * ``` */ export declare const VideoPlayer: React.FC; //# sourceMappingURL=video-player.d.ts.map