import { type CommonAction } from "@iflyrpa/share"; import { z } from "zod"; import { ShipinhaoSendMsgParamsSchema } from "./schema"; export type ShipinhaoSendMsgParams = z.infer; export { ShipinhaoSendMsgParamsSchema } from "./schema"; export interface UploadMsgImageResponse { errCode: number; errMsg: string; data?: { imgMsg: { aesKey: string; cdnUrl: string; encryptKey: string; height: number; md5: string; size: number; width: number; }; }; } export type SendShipinhaoMsgAction = CommonAction; export declare const shipinhaoSendMsg: SendShipinhaoMsgAction;