import { Verb } from '../Verb'; export interface RingAttributes { duration?: number; answerCall?: boolean; } /** * @export * @class Ring * @extends {Verb} * Represents a Ring verb */ export declare class Ring extends Verb { attributes: RingAttributes; /** * Creates an instance of Ring * @param {RingAttributes} attributes The attributes to add to the element */ constructor(attributes: RingAttributes); }