import { FetchType } from '../types';
export declare const GET_LIST = "GET_LIST";
export declare const GET_ONE = "GET_ONE";
export declare const GET_MANY = "GET_MANY";
export declare const GET_MANY_REFERENCE = "GET_MANY_REFERENCE";
export declare const CREATE = "CREATE";
export declare const UPDATE = "UPDATE";
export declare const UPDATE_MANY = "UPDATE_MANY";
export declare const DELETE = "DELETE";
export declare const DELETE_MANY = "DELETE_MANY";
export declare const fetchActionsWithRecordResponse: string[];
export declare const fetchActionsWithArrayOfIdentifiedRecordsResponse: string[];
export declare const fetchActionsWithArrayOfRecordsResponse: string[];
export declare const fetchActionsWithTotalResponse: string[];
export declare const sanitizeFetchType: (fetchType: FetchType) => FetchType | "getList" | "getOne" | "getMany" | "getManyReference" | "create" | "update" | "updateMany" | "delete" | "deleteMany";
//# sourceMappingURL=fetchActions.d.ts.map