import type { AppRegistryKey } from "./apps-registry-keys"; declare const APP_BRAND: unique symbol; type BrandedApp = string & { readonly [APP_BRAND]: K; }; type AppRegistry = { [K in AppRegistryKey]: BrandedApp; } & { [key: string]: string; }; export declare const App: AppRegistry; export {}; //# sourceMappingURL=apps-registry.d.ts.map