import { type SyntheticEvent } from "react"; export interface ListNextContextValue { disabled?: boolean; id?: string; select: (event: SyntheticEvent) => void; isSelected: (value: string) => boolean; isFocused: (value: string) => boolean; highlight: (event: SyntheticEvent) => void; isHighlighted: (value: string) => boolean; } export declare const ListNextContext: import("react").Context; export declare function useListItem(): ListNextContextValue | undefined;