import type { InferModelType } from '@withtyped/server/model'; import { TenantTag } from '../types/tenant.js'; export declare const Tenants: import("@withtyped/server/lib/model/index.js").default<"tenants", { id: string; dbUser: string | null; dbUserPassword: string | null; name: string; tag: TenantTag; createdAt: Date; isSuspended: boolean; }, "name" | "createdAt" | "isSuspended" | "tag", "createdAt">; export type TenantModel = InferModelType;