import { I as ICrop } from '../crop.entities-Dd6QL8u1.cjs'; import * as axios from 'axios'; declare function fetchCreateCrop(data: ICrop): Promise>; declare function fetchCropById({ _id }: { _id: string; }): Promise>; declare function fetchCrops(): Promise>; declare function fetchUpdateCrop({ id, data }: { id: string; data: Partial; }): Promise>; export { ICrop, fetchCreateCrop, fetchCropById, fetchCrops, fetchUpdateCrop };