import { RCSSuggestionType } from '../../../enums/RCS/RCSSuggestionType.js'; import { RCSDialActionSuggestionParams } from '../../../types/Channels/RCS/Suggestions/RCSDialActionSuggestionParams.js'; import { RCSAbstractSuggestion } from './RCSAbstractSuggestion.js'; import '../../../types/Channels/RCS/Suggestions/RCSSuggestionParams.js'; declare class RCSDialActionSuggestion extends RCSAbstractSuggestion implements RCSDialActionSuggestionParams { type: RCSSuggestionType.DIAL; /** * The phone number to dial in E.164 format. */ phoneNumber: string; /** * A URL to open if the device is unable to place a call. */ fallbackUrl?: string; constructor(params: Omit); } export { RCSDialActionSuggestion };