/**
 * Get an item off of local storage by key
 *
 * @param key
 */
export declare function get(key: string): string | undefined;
/**
 * Set an item on local storage by key
 *
 * @param key
 * @param value
 */
export declare function set(key: string, value: unknown): void;
