/** * Available antialiasing strategies for the display renderer. * * These values select how edge smoothing should be handled when the display is initialized, trading image quality * against GPU cost and compatibility. */ export declare enum AntialiasTypeEnum { NONE = "none", MSAA = "msaa", FXAA = "fxaa" }