import type { ZoomVideoSDKVirtualBackgroundDataType } from "react-native-zoom-video-sdk"; /** * Virtual background item interface. */ export declare type ZoomVideoSdkVirtualBackgroundItemType = { /** * The file path of the image. */ filePath: string; /** * Get the current item image name. */ imageName: string; /** * Get the current item background type. */ type: ZoomVideoSDKVirtualBackgroundDataType; /** * Determine whether the virtual background can be deleted. */ canBeDeleted: boolean; }; export declare class ZoomVideoSdkVirtualBackgroundItem implements ZoomVideoSdkVirtualBackgroundItemType { filePath: string; imageName: string; type: ZoomVideoSDKVirtualBackgroundDataType; canBeDeleted: boolean; constructor(item: ZoomVideoSdkVirtualBackgroundItemType); }