import { Source } from "../tools/Source"; export type GlVideoProps = { id?: string; className?: string; width?: number; height?: number; hasShadow?: boolean; sources: Source[]; onLoad?: () => void; autoPlay?: boolean; delayBeforeAutoPlay?: number; muted?: boolean; loop?: boolean; controls?: boolean; hasBorderRadius?: boolean; }; export declare const GlVideo: import("react").MemoExoticComponent>>;