import { CookieOptions, CookieService } from 'ngx-cookie-service'; import * as i0 from "@angular/core"; export declare class AuthService { cookieService: CookieService; constructor(cookieService: CookieService); /** * This method extracts the cookie from browser and returns it. * @return {cookieToken} * @memberof AuthService */ getCookie(cookieName: string): any | null; /** * This method sets cookie in the browser * @return {void} * @memberof AuthService */ setCookie(cookieName: string, cookieValue: string, cookieOptions?: CookieOptions): void; /** * This method deletes the cookie from browser. * @return {void} * @memberof AuthService */ deleteCookie(cookieName: string, path?: string, domain?: string): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; }