import SMTP2GOApiClient from "./client"; import SMTP2GOService from "./service"; import WebMailService from "./webMailService"; import MailAttachment from "./mailAttachment.web"; import InlineAttachment from "./inlineAttachment.web"; export { SMTP2GOApiClient as ApiClient }; export { SMTP2GOService as Service }; export { WebMailService }; export { MailAttachment }; export { InlineAttachment }; export { SMTP2GOError } from "./client"; export default function SMTP2GOApi(apiKey: string): { service: (endpoint: string) => SMTP2GOService; mail: () => WebMailService; client: () => SMTP2GOApiClient; }; export type { Address } from './types/address'; export * from './types/addressCollection'; export * from './types/addressType'; export type { Attachment } from './types/attachment'; export * from './types/attachmentCollection'; export type { Header } from './types/header'; export * from './types/headerCollection';