import { User } from '@accounts/types';
import { EmailTemplateType } from './email-template-type';
export declare type PrepareMailFunction = (to: string, token: string, user: User, pathFragment: string, emailTemplate: EmailTemplateType, from: string) => object;
