import React from "react"; import { XrUiContextType } from "../types"; export declare const XrUiContext: React.Context; declare type Props = { children?: React.ReactNode; layerResolution?: XrUiContextType["layerResolution"]; fontFamily?: XrUiContextType["fontFamily"]; optimizedRendering?: XrUiContextType["optimizedRendering"]; alphaTest?: XrUiContextType["alphaTest"]; depthTest?: XrUiContextType["depthTest"]; premultiplyAlpha?: XrUiContextType["premultiplyAlpha"]; }; export default function XrUi({ children, layerResolution, fontFamily, optimizedRendering, alphaTest, depthTest, premultiplyAlpha, }: Props): JSX.Element; export {};