Option Strict On
Option Explicit On

Namespace Nexamas.UI.Components

    ''' <summary>
    ''' Reviewed image export formats for MASImageViewer. File picking, storage policy,
    ''' overwrite prompts, and long-running export workflows remain application-owned.
    ''' </summary>
    Public Enum MASImageExportFormat
        Png = 0
        Jpeg = 1
        Webp = 2
    End Enum

End Namespace
