import * as React from 'react'; import { ListAction } from './listActions.types'; import { ListItemState } from './useList.types'; export interface ListContextValue { dispatch: (action: ListAction) => void; getItemState: (item: ItemValue) => ListItemState; } export declare const ListContext: React.Context | null>;