import { RCSSuggestionType } from '../../../enums/RCS/RCSSuggestionType.js'; import { RCSOpenURLWebviewSuggestionParams } from '../../../types/Channels/RCS/Suggestions/RCSOpenURLWebviewSuggestionParams.js'; import { RCSAbstractSuggestion } from './RCSAbstractSuggestion.js'; import '../../../types/Channels/RCS/Suggestions/RCSSuggestionParams.js'; declare class RCSOpenURLWebviewSuggestion extends RCSAbstractSuggestion implements RCSOpenURLWebviewSuggestionParams { type: RCSSuggestionType.OPEN_URL_IN_WEBVIEW; /** * The URL to open when the suggestion is tapped. */ url: string; /** * A short description of the URL for accessibility purposes. */ description?: string; /** * The mode for displaying the URL in the webview window */ viewMode?: 'FULL' | 'TALL' | 'HALF'; constructor(params: Omit); } export { RCSOpenURLWebviewSuggestion };