import { type Config } from './utils.js'; export declare function getComponent(emailsDir: string, filename: string): Promise<{ name: string; mod: () => any; } | null | undefined>; export declare const processEmailTemplate: (config: Config, emailsDir: string, filename: string) => void; export declare function processAllEmailTemplates(config: Config, emailsDir: string): Promise;