/**Element */
export declare function useElementApi(): {
    /**
     * Element-返回新的自定义构件id
     * @param data.projectId 项目id
     * @param data.sadiId sadi id
     * @param data.count id数量
     */
    Element_Custom_Id_projectId_sadiId_countGET(data: {
        projectId: number | string;
        sadiId: number | string;
        count: number | string;
    }, config?: {}): Promise<IInt32ListResponse>;
    /**
     * Element-添加自定义构件
     */
    ElementPOST(data: IAddCustomElementBo, config?: {}): Promise<IObjectResponse>;
    /**
     * Element-删除构件
     */
    ElementDELETE(data: IDeleteElementBo, config?: {}): Promise<IObjectResponse>;
    /**
     * Element-更新构件
     */
    ElementPUT(data: IUpdateElementBo, config?: {}): Promise<IObjectResponse>;
};
