import { AdapterRegistryInterface, AppEntry, AppRecord, PluginRegistryInterface, PromptRegistryInterface, ProviderRegistryInterface, RemoteAppMetadata, ResourceRegistryInterface, ToolRegistryInterface } from '@frontmcp/sdk'; import ProviderRegistry from '../../provider/provider.registry'; export declare class AppRemoteInstance extends AppEntry { readonly metadata: RemoteAppMetadata; readonly id: string; constructor(record: AppRecord, scopeProviders: ProviderRegistry); protected initialize(): Promise; get providers(): ProviderRegistryInterface; get adapters(): AdapterRegistryInterface; get plugins(): PluginRegistryInterface; get tools(): ToolRegistryInterface; get resources(): ResourceRegistryInterface; get prompts(): PromptRegistryInterface; }