/**
 * Represents parameters for playing DTMF (Dual-Tone Multi-Frequency) digits in a call.
 */
type PlayDTMFParameters = {
    /**
     * The DTMF digits to be played in the call.
     */
    digits: string;
};

export type { PlayDTMFParameters };
