import { AuthService } from './AuthService'; export declare class FetchService { private authService; constructor(authService: AuthService); get: (url: string) => Promise; post: (url: string, obj?: T) => Promise; put: (url: string, obj?: T) => Promise; patch: (url: string, obj?: T) => Promise; delete: (url: string) => Promise; private handleError; private handleSuccess; private get options(); }