import { ResponseError } from ".";
export declare function isResponseError(res: unknown): res is ResponseError;
export declare function isRequestQuery(method: string): method is "GET";
export declare function isRequestMutation(method: string): method is "POST";
export declare function isRequestFormData(type: string | null): boolean | "" | null;
