import { default as React, PropsWithRef } from 'react'; import { SceneContainerP } from './SceneContainer'; export interface QueryParams { collapseMenu?: string; xrMode?: 'inline' | 'AR' | 'VR' | 'hidden'; } interface VuerRootProps extends PropsWithRef> { style?: object; } export declare const AppContext: React.Context<{ showError: (msg: string) => void; showInfo: (msg: string) => void; showSuccess: (msg: string) => void; showWarning: (msg: string) => void; showModal: (msg: string) => void; }>; export declare const AppProvider: React.Provider<{ showError: (msg: string) => void; showInfo: (msg: string) => void; showSuccess: (msg: string) => void; showWarning: (msg: string) => void; showModal: (msg: string) => void; }>; export declare const SimpleVuer: ({ style, ...rest }: VuerRootProps) => import("react/jsx-runtime").JSX.Element; export {};