import { ComponentVariablesInput } from '@fluentui/styles'; import * as React from 'react'; export declare type ListContextValue = { debug: boolean; selectable: boolean; navigable: boolean; truncateContent: boolean; truncateHeader: boolean; variables: ComponentVariablesInput; onItemClick: (e: React.KeyboardEvent | React.MouseEvent, itemIndex: number) => void; selectedIndex: number; }; export declare type ListContextSubscribedValue = Pick & { selected: boolean; }; export declare const ListContext: import("@fluentui/react-context-selector").Context; export declare const ListContextProvider: React.Provider & React.FC>;