import * as v from "valibot"; import { type PromiseResult } from "~utils/result/Result"; import type { GeneratedEmailType } from "./types/GeneratedEmailType"; export declare function generateEmailApiCall(op: string, name: string, props: T, baseUrl: string): PromiseResult; export declare const generatedEmailSchema: v.ObjectSchema<{ readonly subject: v.StringSchema; readonly text: v.StringSchema; readonly html: v.StringSchema; }, undefined>;