import type { RcTextFieldProps } from '@ringcentral/juno'; import { createContext, useContext } from 'react'; type CommunicationSetupContextValue = { inputPropsRef?: React.RefObject; inputAriaPropsRef?: React.RefObject; }; const CommunicationSetupContext = createContext( {}, ); const useCommunicationSetupContext = () => useContext(CommunicationSetupContext); export { CommunicationSetupContext, useCommunicationSetupContext }; export type { CommunicationSetupContextValue };