import type { TokenObject } from '../../shared/schema'; import type { Account } from '../schema'; interface Context { token: TokenObject; } interface Params { id: string; } export declare function retrieveAccount(context: Context, params: Params): Promise; export {};