import { Facade } from '../facade'; import Cookies from 'cookies'; export declare type SessionValue = Record | Array> | string; export declare class Session extends Facade { static set(name: string, value: SessionValue | string, options?: Cookies.SetOption): void; static get(name: string, defaultValue: T): T; static clear(name: string): void; }