declare const session: { set: (key: string, value: any) => void; get: (key: string) => any; clear: (key: string) => void; }; export default session;