import type { EntityRecordBase } from "../../schema"; import { type RecordListPageInfo } from "./_record-list-page"; import { type RecordPageInfo } from "./_record-page"; export declare function makePagesForEntity(pagesInfo: { list: RecordListPageInfo; one: RecordPageInfo; getTitle: (_: T) => string; }): { list: import("./base").PageInfo>; one: import("./base").PageInfo>; };