import * as React from 'react'; import type { InternalNamePath } from './interface'; export interface ListContextProps { getKey: (namePath: InternalNamePath) => [React.Key, InternalNamePath]; } declare const ListContext: React.Context; export default ListContext;