export type Listener = ({ value }: any) => void; export type Listeners = Set; export type ContextNextValue = { value: T; listeners: Listeners; };