/** * Represents parameters for an "earmuff" action in a call. */ type EarmuffCallParameters = { /** * The action to earmuff the call. */ action: 'earmuff'; }; export type { EarmuffCallParameters };