export declare class HMSVideoPlugin { protected type: string; constructor(pluginType: string); protected get nativeModule(): any; /** * Enables video plugin. * @returns {Promise} A promise that resolves to true when video plugin is enabled, otherwise, rejected promise is returned */ enable(): Promise; /** * Disable video plugin. * @returns {Promise} A promise that resolves to true when video plugin is disabled, otherwise, rejected promise is returned */ disable(): Promise; } //# sourceMappingURL=HMSVideoPlugin.d.ts.map