import { Record } from "../../core"; import { ISdk } from "@forest-fire/types"; import { IFmModelMeta } from "../../types"; import { Model } from "../../models/Model"; export declare function addModelMeta(modelName: string, props: IFmModelMeta): void; /** * Returns the META info for a given model, it will attempt to resolve * it locally first but if that is not available (as is the case with * self-reflexify relationships) then it will leverage the ModelMeta store * to get the meta information. * * @param rec a model or record which exposes META property */ export declare function getModelMeta(rec: Record): IFmModelMeta; export declare function modelsWithMeta(): string[];