import { createContext } from '../../helpers/utils'; import type { SelectAnimationContextValue } from './select.types'; const [SelectAnimationProvider, useSelectAnimation] = createContext({ name: 'SelectAnimationContext', }); export { SelectAnimationProvider, useSelectAnimation };