/** * Simulates when a user presses a `requestUserLocation` button. */ export interface UserButtonPressRequestUserLocation { /** Name of the button that you want to press. */ title: string; /** Metadata attached to the button. */ metadata?: string; /** Location the simulated user responded with. */ location?: UserButtonPressRequestUserLocation.Location; } export declare namespace UserButtonPressRequestUserLocation { /** * Location the simulated user responded with. */ interface Location { text?: string; latitude?: number; longitude?: number; address?: string; } }