/** * Represents parameters for unmuting a call, allowing audio to be transmitted and received again. */ type UnmuteCallParameters = { /** * The action type indicating unmuting of a call. */ action: 'unmute'; }; export type { UnmuteCallParameters };