//#region src/routing/account-id.d.ts declare const DEFAULT_ACCOUNT_ID = "default"; declare function normalizeAccountId(value: string | undefined | null): string; //#endregion //#region src/routing/session-key.d.ts declare function resolveThreadSessionKeys(params: { baseSessionKey: string; threadId?: string | null; parentSessionKey?: string; useSuffix?: boolean; normalizeThreadId?: (threadId: string) => string; }): { sessionKey: string; parentSessionKey?: string; }; //#endregion export { DEFAULT_ACCOUNT_ID as n, normalizeAccountId as r, resolveThreadSessionKeys as t };