/** * Email.js controller * * @description: A set of functions called "actions" of the `email` plugin. */ declare const emailController: { send(ctx: Koa.Context): Promise; test(ctx: Koa.Context): Promise; getSettings(ctx: Koa.Context): Promise; }; export default emailController;