export declare const set: <T>({ key, value }: {
    key: string;
    value: T;
}) => void;
export declare const del: ({ key }: {
    key: string;
}) => void;
export declare const get: <T>({ key }: {
    key: string;
}) => T | undefined;
