import { type EmailActionDefinition, type NotifyActionDefinition } from '@appsemble/lang-sdk'; import { type Options } from '@appsemble/node-utils'; import { type App } from '@appsemble/types'; import { type Context, type Middleware } from 'koa'; export declare function handleEmail(ctx: Context, app: App, action: EmailActionDefinition, options: Options): Promise; export declare function handleNotify(ctx: Context, app: App, action: NotifyActionDefinition, options: Options): Promise; export declare function createProxyHandler(useBody: boolean, options: Options): Middleware;