/**
 * Enum representing common video resolution standards.
 *
 * @remarks
 * The values correspond to increasing levels of video quality:
 * - `SD`: Standard Definition (typically 480p)
 * - `HD`: High Definition (typically 720p)
 * - `FullHD`: Full High Definition (typically 1080p)
 * - `WQHD`: Wide Quad High Definition (typically 1440p)
 * - `UHD`: Ultra High Definition (typically 2160p/4K)
 */
export enum VideoResolution {
    SD,
    HD,
    FullHD,
    WQHD,
    UHD
}