import type { User } from '../users'; export type Absence = { id: string; accountId: string; userId: string; reason: string | null; endedAt: string | null; createdAt: string; updatedAt: string; deletedAt: string | null; user?: User; }; export type AbsenceRelationships = 'user'; export type CreateAbsencePayload = { userId: string; reason?: string; }; export type UpdateAbsencePayload = { reason?: string; endedAt?: string | null; }; //# sourceMappingURL=types.d.ts.map