/**
 * `<VRButton />` is an HTML `<button />` that can be used to init and display info about your immersive VR session.
 *
 * ```svelte
 * <VRButton
 *   onerror={(event) => {}}
 *   onclick={(event) => {}}
 * />
 * ```
 */
declare const VrButton: import("svelte").Component<Omit<Record<string, any>, "mode" | "sessionInit">, {}, "">;
export default VrButton;
