import type { PaginateSettingsCatalogOptions, SettingsCatalogItem, SettingsCatalogPage } from './types.js'; /** * Search and page an in-memory settings registry before it reaches the DOM. * * Applications backed by a database can construct {@link SettingsCatalogPage} * directly from their server-side query instead. This helper is for code-first * registries that already exist in memory, such as prompt and language * definitions. */ export declare function paginateSettingsCatalog(source: readonly T[], options?: PaginateSettingsCatalogOptions): SettingsCatalogPage; //# sourceMappingURL=catalog.d.ts.map