import type DataLoader from "dataloader";
import type { IDataLoaderParams } from "./types.js";
export * from "./DataLoaderCache.js";
interface Callable {
    (params: IDataLoaderParams): DataLoader<any, any>;
}
export type DataLoaders = "getAllEntryRevisions" | "getRevisionById" | "getPublishedRevisionByEntryId" | "getLatestRevisionByEntryId";
export declare const getDataLoaderFactory: (name: string) => Callable;
