import { AutoEncoder } from '@simonbackx/simple-encoding'; export declare class EmergencyContact extends AutoEncoder { id: string; name: string; phone: string | null; title: string; createdAt: Date; /** * Stores the timestamp the contact was last edited in the UI (not the same as edited in the database - this is used to find the most correct data in case of duplicates) */ updatedAt: Date | null; /** * Call this to clean up capitals in all the available data */ cleanData(): void; isEqual(other: EmergencyContact): boolean; merge(other: EmergencyContact): void; } //# sourceMappingURL=EmergencyContact.d.ts.map