import { PlatformUser } from "hyinsit-types"; export declare const addTenantToUrl: (url: string) => string; export declare const doesTenantExist: (tenantId: string) => Promise; export declare const tryAddTenant: (tenantId: string, userId: string, email: string, afterCreateTenant: () => Promise) => Promise; export declare const doWithGlobalDB: (tenantId: string, cb: any) => Promise; export declare const lookupTenantId: (userId: string) => Promise; export declare const getTenantUser: (identifier: string) => Promise; export declare const isUserInAppTenant: (appId: string, user?: any) => boolean; export declare const getTenantIds: () => Promise;