import { BaseType, InputData, Query, Payload } from "../types"; export declare const _get: (strapiRequest: any) => (type: string, query?: Query) => Promise>; export declare const _put: (strapiRequest: any) => (type: string, data: InputData, query?: Query) => Promise>; export declare const _remove: (strapiRequest: any) => (type: string, query?: Query) => Promise>; export declare const single: { get: (type: string, query?: Query) => Promise>; put: (type: string, data: InputData, query?: Query) => Promise>; remove: (type: string, query?: Query) => Promise>; };