import { EntityManager } from 'typeorm'; import { ClassicCache } from '@pjblog/cache'; import { BlogUserEntity } from '../entities/user'; export declare function createBlogUserCache(cache: ClassicCache): { get: (options: { account: string; }, args_0: EntityManager) => Promise; set: (options: { account: string; }, args_0: EntityManager) => Promise; del: (options: { account: string; }) => Promise; };