/** * Represents parameters for muting a call. */ type MuteCallParameters = { /** * The action indicating that the call should be muted. */ action: 'mute'; }; export type { MuteCallParameters };