import type * as Pinnacle from "../index.mjs"; /** * Simulate a button press from a user. */ export interface SimulateUserButton { /** User phone number in E.164 format. */ from: string; /** RCS agent ID (prefixed with `agent_`). */ to: string; button: Pinnacle.UserButtonPress; }