import type { AppIngressCreateReqVO, AppIngressCreateRespVO, AppIngressDeleteRespVO, AppIngressGetRespVO, AppIngressGetBlocksRespVO, AppIngressGetByHashIDRespVO, AppIngressListRespVO, AppIngressUpdateReqVO, AppIngressUpdateRespVO, AppIngressUpdateBlocksReqVO, AppIngressUpdateBlocksRespVO } from '../../types/ingress'; export declare function createEntityIngress(appId: string, entityId: string, data: AppIngressCreateReqVO): Promise; export declare function createEntityIngressFrom(appId: string, entityId: string, fromIngressId: string, data: AppIngressCreateReqVO): Promise; export declare function deleteEntityIngress(appId: string, entityId: string, id: string): Promise; export declare function getEntityIngress(appId: string, entityId: string, id: string): Promise; export declare function getEntityIngressBlocks(appId: string, entityId: string, id: string): Promise; export declare function getEntityIngressByHashID(appId: string, entityId: string, id: string): Promise; export declare function getEntityIngressList(appId: string, entityId: string): Promise; export declare function updateEntityIngress(appId: string, entityId: string, id: string, data: AppIngressUpdateReqVO): Promise; export declare function updateEntityIngressBlocks(appId: string, entityId: string, id: string, data: AppIngressUpdateBlocksReqVO): Promise; export declare function updateEntityIngressByHashID(appId: string, entityId: string, id: string, data: AppIngressUpdateReqVO): Promise; //# sourceMappingURL=ingress.d.ts.map