/** * Type is the storage layout the database was created with: "split" (a * knowledge and a memory corpus, selected by `type` on every call) or * "unified" (one corpus; `type` defaults to unified). */ export declare const TenantsDatabaseDetailType: { readonly Split: "split"; readonly Unified: "unified"; }; export type TenantsDatabaseDetailType = (typeof TenantsDatabaseDetailType)[keyof typeof TenantsDatabaseDetailType];