import { WebApplicationSettings } from '../../WebApplicationSettings'; import { InternalWebContext } from '../../InternalWebContext'; export declare class DeviceCookieManager { get(ctx: InternalWebContext): string | undefined; create(ctx: InternalWebContext): string; set(ctx: InternalWebContext, id: string): string; }