import type { Entry } from "../../entry/models/Entry"; export interface SectionEntry extends Entry { SectionId: number; SectionName: string; SectionFamilyId: number; SectionFamilyName: string; WeighUp: string | null; BreakIn: string | null; SectionNotes: string | null; SectionEntryCreatedAt: Date | null; SectionEntryCreatedBy: string | null; SectionEntryUpdatedAt: Date | null; SectionEntryUpdatedBy: string | null; EntryTypeCode: "F" | "S"; } export declare const SECTION_ENTRY_INITIAL_VALUES: Partial;