/** * Share statistic information. */ export declare type ZoomVideoSdkShareStatisticInfoType = { /** * Get the video's bit rate. */ getBpf: () => Promise; /** * Get the video's Frames Per Second (FPS). */ getFps: () => Promise; /** * Get the video's frame height. */ getHeight: () => Promise; /** * Get the video's frame width. */ getWidth: () => Promise; }; export declare class ZoomVideoSdkShareStatisticInfo implements ZoomVideoSdkShareStatisticInfoType { userId: string; constructor(userId: string); getBpf(): Promise; getFps(): Promise; getHeight(): Promise; getWidth(): Promise; }