import { BaseRet } from "../../../common/interface"; export declare type IMediaType = "image" | "voice" | "video" | "file"; export interface IMediaRet extends BaseRet { type: IMediaType; media_id: string; create_at: string; }