import type { GenericClientInterface, ClientResponse, RequestOptions } from "@philippeweidmann/react-native-network-client"; /** * Generic client for making requests */ declare class GenericClient implements GenericClientInterface { head: (url: string, options?: RequestOptions) => Promise; get: (url: string, options?: RequestOptions) => Promise; put: (url: string, options?: RequestOptions) => Promise; post: (url: string, options?: RequestOptions) => Promise; patch: (url: string, options?: RequestOptions) => Promise; delete: (url: string, options?: RequestOptions) => Promise; } declare const _default: GenericClient; export default _default;