type VideoProps = { url: string; playing?: boolean; loop?: boolean; controls?: boolean; muted?: boolean; width?: string; height?: string; }; export default function LazySectionVideo({ url, playing, loop, controls, muted, width, height, }: VideoProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=lazy-section-video.component.d.ts.map