import { MessageTextInterface } from '../MessageTextInterface.js'; import '../MessageInterface.js'; /** * Represents an interface for defining SMS channel text messages. * * @deprecated Please use types instead of interfaces. * * @ignore */ interface SMSTextInterface extends MessageTextInterface { /** * The channel for SMS, which is always 'sms'. */ channel: 'sms'; } export type { SMSTextInterface };