import { ActionCtx } from './types';
export default function getStorageFactory(key: string): ({ storage, resolve, path }: ActionCtx) => Promise<any> | {
    value: string | null;
};
