import type { SectionEntry } from "../models/SectionEntry"; export declare const getEntriesBySection: (params: { sectionId: number; }, signal?: AbortSignal) => Promise; export declare const upsertSectionEntry: ({ entryId, sectionId, weighUp, breakIn, notes, }: { entryId: number; sectionId: number; weighUp?: string | null; breakIn?: string | null; notes?: string | null; }) => Promise; export declare const deleteSectionEntry: (entryId: number) => Promise; export declare const createSectionEntry: ({ assetId, shiftId, sectionId, title, content, createTimestamp, author, weighUp, breakIn, notes, }: { assetId: number | null; shiftId: number; sectionId: number; title: string; content: string; createTimestamp: Date; author: string; weighUp?: string | null; breakIn?: string | null; notes?: string | null; }) => Promise;