///
export declare const mailgunContext: {
id: string;
envKeys: string[];
optionalKeys: string[];
envContext({ getKey }: {
getKey: (s: string) => string | undefined;
}): {
email: {
from: string;
domain: string;
apiKey: string;
sendMail(inp: {
email: string;
subject: string;
html: string;
attachment?: {
value: NodeJS.ReadStream;
options: {
filename: string;
contentType: string;
};
}[] | undefined;
}): Promise;
};
};
};
declare global {
namespace Nextpress {
interface CustomContext extends ReturnType {
}
}
}