import { type CommonAction } from "@iflyrpa/share"; import { ActiomCommonParams } from "../../types"; export interface ShipinhaoGetMsgImageParams extends ActiomCommonParams { imgMsg: { aeskey: string; url: string; }; rawContent: string; } export interface MediaInfoResponse { errCode: number; errMsg: string; data?: { baseResp?: { errcode: number; }; imgContent?: string; length?: string; ext?: string; }; } export type ShipinhaoGetMediaInfoAction = CommonAction; export declare const shipinhaoGetMsgImage: ShipinhaoGetMediaInfoAction;