import type { TemplateHelpers } from '../template-helpers';
import type { EntityParams, Model } from '../types';
interface ComputeEntityParamsParam {
    model: Model;
    allModels: Model[];
    templateHelpers: TemplateHelpers;
}
export declare const computeEntityParams: ({ model, allModels, templateHelpers, }: ComputeEntityParamsParam) => EntityParams;
export {};
