import type { CookieOptions } from '../../types/index.ts'; import { BeanSimple } from '../../bean/beanSimple.ts'; export declare class AppCookie extends BeanSimple { getItem(key: string): string | undefined; getItem(key?: undefined | null): Record; setItem(key: string, value: string, opts?: CookieOptions): void; removeItem(key: string, opts?: CookieOptions): void; } //# sourceMappingURL=cookie.d.ts.map