import { SendSMSRequest, SendSMSResult } from "./SendSMS.js";
export declare const MMS_MAX_SUPPORT_FILE_SIZE = 300;
export declare const MMS_SUPPORT_FILE_EXTENSION: string[];
export type SendFile = {
    name: string;
    body?: string;
};
export interface SendMMSRequest extends SendSMSRequest {
    files: SendFile[];
}
export interface SendMMSResult extends SendSMSResult {
}
