import { z } from "zod"; import { shortMessageSchema, attachmentSchema, messageSchema } from "./schemas.js"; export type ShortMessage = z.infer; export type Attachment = z.infer; export type Message = z.infer; export type Options = { retry: number; timeout: number; };