import { GeneratedSchema } from './../foundations/index.js'; /** * * @remarks This is a type for database creation. * @see {@link DailyActiveUser} for the original type. */ export type CreateDailyActiveUser = { id: string; tenantId?: string; userId: string; date?: number; }; export type DailyActiveUser = { id: string; tenantId: string; userId: string; date: number; }; export type DailyActiveUserKeys = 'id' | 'tenantId' | 'userId' | 'date'; export declare const DailyActiveUsers: GeneratedSchema;