import type { Section, SectionFamily, TopSection } from "../models/Section"; export declare const getSectionFamilies: ({ schema, signal, }: { schema?: string; signal?: AbortSignal; }) => Promise; export declare const getSections: ({ schema, sectionFamilyId, searchText, signal, }: { schema?: string; sectionFamilyId?: number | null; searchText?: string | null; signal?: AbortSignal; }) => Promise; export declare const getTopUsedSections: ({ schema, top, signal, }: { schema?: string; top?: number; signal?: AbortSignal; }) => Promise;