import * as i0 from "@angular/core"; export declare class CookieService { setCookie(name: string, value: string, options?: { expires?: Date; maxAge?: number; path?: string; domain?: string; secure?: boolean; sameSite?: 'Strict' | 'Lax' | 'None'; httpOnly?: boolean; }): void; getCookie(name: string): string | null; deleteCookie(name: string, path?: string, domain?: string): void; getAllCookies(): { [key: string]: string; }; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; }