import { RCSSuggestionType } from '../../../enums/RCS/RCSSuggestionType.js'; import { RCSViewLocationSuggestionParams } from '../../../types/Channels/RCS/Suggestions/RCSViewLocationSuggestionParams.js'; import { RCSAbstractSuggestion } from './RCSAbstractSuggestion.js'; import '../../../types/Channels/RCS/Suggestions/RCSSuggestionParams.js'; declare class RCSViewLocationSuggestion extends RCSAbstractSuggestion implements RCSViewLocationSuggestionParams { type: RCSSuggestionType.VIEW_LOCATION; /** * The latitude of the location to view. */ latitude: string; /** * The longitude of the location to view. */ longitude: string; /** * A label to display on the location pin. */ pinLabel: string; /** * A URL to open if the device is unable to display a map. */ fallbackUrl?: string; constructor(params: Omit); } export { RCSViewLocationSuggestion };