import { UserAddressProps } from '../types/ContextProps'; export declare const setLocalStorage: (name: string, value: string) => void; export declare const getLocalStorage: (name: string) => string | null | undefined; export declare const getFullLocalStorage: () => { regionalized: string | undefined; deliveryInfos: any; userAddressInfos: UserAddressProps; };