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