import { type Context, type Dispatch } from 'react'; import { SelectReducerAction } from '../state/select-menu-state-reducer.js'; export interface SelectMenuContextProps { state: boolean; dispatch: Dispatch; } export declare const initialState = false; /** SelectMenu context, used to access the state and dispatcher in other components. */ export declare const SelectMenuContext: Context;