import apiCrudGET from "./get"; import apiCrudPOST from "./post"; import apiCrudPUT from "./put"; import apiCrudDELETE from "./delete"; declare const crud: { get: typeof apiCrudGET; insert: typeof apiCrudPOST; update: typeof apiCrudPUT; delete: typeof apiCrudDELETE; options: () => Promise; }; export default crud;