import { Organization } from './Organization.js'; import { TranslatedString } from './TranslatedString.js'; export type AppType = 'registration' | 'dashboard' | 'admin' | 'webshop'; /** * urls are hardcoded because they need to work without a current language */ export declare function appToTranslatableUri(app: AppType | 'auto'): TranslatedString; export declare function appToUri(app: AppType | 'auto'): string; export declare function uriToApp(uri: string): "auto" | "admin" | "registration" | "dashboard"; export declare const getAppName: (app: AppType) => string; export declare const getAppTitle: (app: AppType | "auto", organization: Organization | undefined | null) => string; export declare const getAppDescription: (app: AppType | "auto", organization: Organization | undefined | null) => string | null; //# sourceMappingURL=AppType.d.ts.map