import { Platform } from '../../Interface'; declare const sendWorkspaceAdd: (email: string, workspaceName: string, dashboardLink: string) => Promise; declare const sendWorkspaceInvite: (email: string, workspaceName: string, registerLink: string, platform?: Platform, inviteType?: "new" | "update") => Promise; declare const sendPasswordResetEmail: (email: string, resetLink: string) => Promise; declare const sendVerificationEmailForCloud: (email: string, verificationLink: string) => Promise; export { sendWorkspaceAdd, sendWorkspaceInvite, sendPasswordResetEmail, sendVerificationEmailForCloud };