import { Verb } from '../Verb'; export interface SendDtmfAttributes { toneDuration?: number; toneInterval?: number; } /** * @export * @class SendDtmf * @extends {Verb} * Represents a SendDtmf verb */ export declare class SendDtmf extends Verb { digits: string; attributes: SendDtmfAttributes; /** * Creates an instance of SendDtmf * @param {string} digits The digits to send * @param {SendDtmfAttributes} attributes The attributes to add to the element */ constructor(digits: string, attributes?: SendDtmfAttributes); }