export interface LocationShareAction { /** Location data shared by the user. */ data: LocationShareAction.Data; } export declare namespace LocationShareAction { /** * Location data shared by the user. */ interface Data { /** Address corresponding to the shared location. */ address: string; /** Latitude of the shared location. */ latitude: number; /** Longitude of the shared location. */ longitude: number; /** Text message sent with the location. */ text?: string; } }