/** * Represents parameters for unearmuffing a call, allowing the call audio to be heard again. */ type UnearmuffCallParameters = { /** * The action type indicating unearmuffing of a call. */ action: 'unearmuff'; }; export type { UnearmuffCallParameters };