import React from 'react'; import type { AppLibraryList, Registry } from './core'; export declare const SdkProvider: ({ children, registry, installedApps, }: { children: React.ReactNode; registry: Registry; installedApps: { installedApps: string[]; appsLibrary: AppLibraryList; }; }) => JSX.Element;