import { RCSSuggestionType } from '../../../enums/RCS/RCSSuggestionType.js'; import { RCSSuggestionParams } from '../../../types/Channels/RCS/Suggestions/RCSSuggestionParams.js'; declare abstract class RCSAbstractSuggestion implements RCSSuggestionParams { /** * The type for the suggestion object. */ abstract type: RCSSuggestionType; /** * The text shown on the suggestion chip and sent back if selected. */ text: string; /** * Developer-defined opaque metadata to return in the inbound webhook * when the user selects this suggestion. */ postbackData: string; constructor(params: Omit); } export { RCSAbstractSuggestion };