import { RCSSuggestionType } from '../../../enums/RCS/RCSSuggestionType.js'; import { RCSOpenURLSuggestionParams } from '../../../types/Channels/RCS/Suggestions/RCSOpenURLSuggestionParams.js'; import { RCSAbstractSuggestion } from './RCSAbstractSuggestion.js'; import '../../../types/Channels/RCS/Suggestions/RCSSuggestionParams.js'; declare class RCSOpenURLSuggestion extends RCSAbstractSuggestion implements RCSOpenURLSuggestionParams { type: RCSSuggestionType.OPEN_URL; /** * The URL to open when the suggestion is tapped. */ url: string; /** * A short description of the URL for accessibility purposes. */ description?: string; constructor(params: Omit); } export { RCSOpenURLSuggestion };