import type { FunctionComponent } from 'react'; import React from 'react'; import { PresenceSettingSection } from '../PresenceSettingSection'; import type { PresenceSettingProps } from './SettingsPanel.interface'; const PresenceSetting: FunctionComponent = ({ showPresenceSettings, dndStatus, userStatus, currentLocale, isCallQueueMember, setAvailable, setBusy, setDoNotDisturb, setInvisible, toggleAcceptCallQueueCalls, openPresenceSettings, enableAcceptQueueCallsControl, onCallQueueManagementClick, }) => { return showPresenceSettings && dndStatus && userStatus ? ( any) | undefined' is no... Remove this comment to see the full error message setAvailable={setAvailable} // @ts-expect-error TS(2322): Type '((...args: any[]) => any) | undefined' is no... Remove this comment to see the full error message setBusy={setBusy} // @ts-expect-error TS(2322): Type '((...args: any[]) => any) | undefined' is no... Remove this comment to see the full error message setDoNotDisturb={setDoNotDisturb} // @ts-expect-error TS(2322): Type '((...args: any[]) => any) | undefined' is no... Remove this comment to see the full error message setInvisible={setInvisible} // @ts-expect-error TS(2322): Type '((...args: any[]) => any) | undefined' is no... Remove this comment to see the full error message toggleAcceptCallQueueCalls={toggleAcceptCallQueueCalls} // @ts-expect-error TS(2322): Type 'boolean | undefined' is not assignable to ty... Remove this comment to see the full error message showPresenceSettings={openPresenceSettings} onCallQueueManagementClick={onCallQueueManagementClick} /> ) : null; }; export { PresenceSetting };