export interface Entry { EntryId: number; ShiftId: number; AssetId: number | null; Shift: string | null; Crew: string | null; Title: string; Content: string; CreateTimestamp: Date | null; UpdateTimestamp: Date | null; LogEntryTypeCode: "M" | "A" | "S"; Author: string | null; UpdatedBy: string | null; AttachmentCount?: number; SectionId: number | null; SectionName?: string; SectionFamilyName?: string; WeighUp?: string | null; BreakIn?: string | null; SectionNotes?: string | null; } export declare const ENTRY_INITIAL_VALUES: Entry;