/** * Simulates when a user presses a `sendLocation` button. */ export interface UserButtonPressSendLocation { /** Name of the button that you want to press. */ title: string; /** Metadata attached to the button. */ metadata?: string; /** Name of the location shared. */ name?: string; /** Shared coordinates. */ latLong?: UserButtonPressSendLocation.LatLong; } export declare namespace UserButtonPressSendLocation { /** * Shared coordinates. */ interface LatLong { /** Latitude of the shared location. */ lat?: number; /** Longitude of the shared location. */ lng?: number; } }