import React from "react"; export interface VideoDefaultsProps { /** OptixFlow API key for poster optimization */ optixFlowApiKey?: string; children?: React.ReactNode; } /** * VideoDefaults component allows setting default configuration for all Video components in the tree. * Similar to ImgDefaults in @page-speed/img. */ export declare const VideoDefaults: React.FC;