import { Entity } from "../../entities/entity.schema"; declare const listRelatedFields: (name: string, maxDeep: number, level?: number) => Promise; declare const combineRelatedFields: (data: any, odata: any, entity: Entity, refIdField?: string, timestamps?: any) => Promise; declare const addSystemField: (entityName: string, field: any) => void; declare const addSystemHook: (entityName: string, hook: any) => void; declare const addSystemCustomAction: (entityName: string, action: any) => void; declare const addSystemLayout: (entityName: string, layout: any) => void; declare const addSystemSchedule: (schedule: any) => void; declare const initSetting: (setting: any) => void; declare const initData: (entity: string) => void; declare const removeRelatedFields: (data: any, entity: Entity) => any; declare const addCustomFunction: (data: any) => void; export { listRelatedFields, combineRelatedFields, addSystemField, addSystemHook, addSystemCustomAction, addSystemSchedule, addSystemLayout, initSetting, initData, removeRelatedFields, addCustomFunction };