export interface ConnectedAppSummary { id: string; name: string; description?: string; url: string; /** Canonical app-home URL used for launchers; `url` remains the A2A endpoint. */ homeUrl?: string; color?: string; source?: "builtin" | "custom" | "workspace"; } export interface WorkspaceAppId { id: string; isDispatch?: boolean; } export declare function filterOtherApps(connectedApps: ConnectedAppSummary[], workspaceApps: WorkspaceAppId[]): ConnectedAppSummary[]; //# sourceMappingURL=other-apps.d.ts.map