interface MemoOptions { dir: string; name: string; file: string; } declare function getMemo(config: Partial): Promise; declare function setMemo(memo: object, config: Partial): Promise; export { getMemo, setMemo };