export interface IButtonProps { /** * Callback to execute when the button is clicked. */ notifyClick?: Function; /** * Notify mode for the `participantMenuButtonClicked` event - * whether to only notify or to also prevent button click routine. */ notifyMode?: string; /** * The ID of the participant that's linked to the button. */ participantID: string; }