export type Cookies = {
    [x: string]: any;
};
export type SetCookie = (name: string, value: any, options?: any | undefined) => void;
export type setPreferences = (key: string, newValue: any) => void;
