import { StorageOptionsInterface } from "..";
declare type Result<S> = [S, (replacement: S) => void];
export declare function useStorage<S = any>(scope: "user" | "device", key: string, defaultValue?: S, options?: StorageOptionsInterface<S>): Result<S>;
export {};