export declare type HMSBackgroundInput = HTMLImageElement | HTMLVideoElement | HTMLCanvasElement; export declare enum HMSVirtualBackgroundTypes { BLUR = "blur", NONE = "none", GIF = "gif", IMAGE = "image", VIDEO = "video", CANVAS = "canvas" } export declare type HMSVirtualBackground = string | HMSVirtualBackgroundTypes.BLUR | HMSVirtualBackgroundTypes.NONE | HMSBackgroundInput;