import React from 'react'; import type { InitConfig } from './native/ZoomVideoSdk'; /** * Define parameters that needed to initialize video sdk. */ interface Props { config?: InitConfig; children?: React.ReactNode; } /** * The interface to initialize video sdk. */ export declare const ZoomVideoSdkProvider: React.FC; export {};