/** * Button that shares a specific location with the recipient when tapped. */ export interface RcsButtonSendLocation { /** * Optional name or label for the location that will be displayed in the map app (e.g., "Central Park", "Home Office"). * * If not provided, the button title will be used as the location name. */ name?: string; /** Geographic coordinates of the location to share. */ latLong: RcsButtonSendLocation.LatLong; /** Display text for the button. */ title: string; /** Optional additional data to attach to this button. */ metadata?: string; } export declare namespace RcsButtonSendLocation { /** * Geographic coordinates of the location to share. */ interface LatLong { /** Latitude coordinate in decimal degrees. */ lat: number; /** Longitude coordinate in decimal degrees. */ lng: number; } }